第五講 雜湊演算法(加密演算法)

2021-09-26 08:35:32 字數 1992 閱讀 1682

1、在身份認證過程中往往會涉及加密。如果不加密那麼資料資訊不安全。shiro內容實現比較多的雜湊演算法。如md5,sha等。並且提供了加鹽功能。比如"1111"的md5碼為"b59c67bf196a4758191e42f76670ceba",這個md5碼可以在很多破解**上找到對應的原密碼。但是如果為"1111"+姓名,那麼能找到原密碼的難度就會增加。

2、測試md5案例

1

package

com.sun123.shiro;23

import

org.apache.shiro.crypto.hash.md5hash;

4import

org.apache.shiro.crypto.hash.******hash;56

public

class

md5demo

24 }

執行結果:

3、在自定義的realm中使用雜湊演算法

realm的實現:

1

package

com.sun123.realm;23

import

org.apache.shiro.authc.authenticationexception;

4import

org.apache.shiro.authc.authenticationinfo;

5import

org.apache.shiro.authc.authenticationtoken;

6import

org.apache.shiro.authc.******authenticationinfo;

7import

org.apache.shiro.authz.authorizationinfo;

8import

org.apache.shiro.realm.authorizingrealm;

9import

org.apache.shiro.subject.principalcollection;

10import

org.apache.shiro.util.bytesource;

1112

public

class userrealm extends

authorizingrealm

2425

//完成身份認證,並且返回認證資訊

26//

如果身份認證失敗,返回null

27@override

28protected authenticationinfo dogetauthenticationinfo(authenticationtoken token) throws

authenticationexception

4041

//授權的資訊

42@override

43protected

authorizationinfo dogetauthorizationinfo(principalcollection arg0)

4748 }

shiro.ini

1

[main]

2credentialsmatcher=org.apache.shiro.authc.credential.hashedcredentialsmatcher

3credentialsmatcher.hashalgorithmname=md5

4credentialsmatcher.ha****erations=2

5userrealm=com.sun123.realm.userrealm

6userrealm.credentialsmatcher=$credentialsmatcher

7 securitymanager.realm=$userrealm

shiro(五)雜湊演算法(加密演算法)

1.在身份認證過程中往往會涉及加密。如果不加密那麼資料部不安全。shiro內部實現了比較多的雜湊演算法。如md5,sha等。並且提供了加鹽功能,比如 1111 的md5碼為 b59c67bf196a4758191e42f76670ceba 這個md5碼可以在很多破解 上找到相對應的原密碼。但是如果為...

對稱加密演算法 非對稱加密演算法 雜湊雜湊演算法

在實際的操作過程中,我們通常採用的方式是 採用非對稱加密演算法管理對稱演算法的金鑰,然後用對稱加密演算法加密資料,這樣我們就整合了兩類加密演算法的優點,既實現了加密速度快的優點,又實現了安全方便管理金鑰的優點。常用加密演算法概述 常見的加密演算法可以分成三類,對稱加密演算法,非對稱加密演算法和has...

雜湊演算法與加密演算法

那麼,首先要知道,什麼是雜湊 演算法 呢?產生一些資料片段 例如訊息或會話項 的雜湊值的演算法。例如,md5就是一種雜湊演算法。軟體開發中的雜湊函式或雜湊演算法,又稱雜湊函式,英語 hash function,是一種從任何一種資料中建立小的數字 指紋 的方法。所有雜湊函式都有如下乙個基本特性 如果兩...