本文整理汇总了Java中org.apache.shiro.crypto.hash.DefaultHashService.setGeneratePublicSalt方法的典型用法代码示例。如果您正苦于以下问题:Java DefaultHashService.setGeneratePublicSalt方法的具体用法?Java DefaultHashService.setGeneratePublicSalt怎么用?Java DefaultHashService.setGeneratePublicSalt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.shiro.crypto.hash.DefaultHashService
的用法示例。
在下文中一共展示了DefaultHashService.setGeneratePublicSalt方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: genPassword
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
private String genPassword(final String psw, final String salt, final int iter) {
try {
final DefaultHashService hash = new DefaultHashService();
hash.setPrivateSalt(ByteSource.Util.bytes(STATIC_SALT));
hash.setHashIterations(iter);
hash.setGeneratePublicSalt(false);
hash.setHashAlgorithmName(ALG_NAME);
final String pswEnc = hash.computeHash(new HashRequest.Builder()
.setSource(psw).setSalt(salt).setIterations(iter).build()).toHex();
return pswEnc;
} catch (final Exception e) {
throw new RuntimeException(e);
}
}
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:19,代码来源:QueryAndEncodeDatabaseAuthenticationHandlerTests.java
示例2: LegacyNexusPasswordService
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
public LegacyNexusPasswordService() {
//Initialize and configure sha1 password service
this.sha1PasswordService = new DefaultPasswordService();
DefaultHashService sha1HashService = new DefaultHashService();
sha1HashService.setHashAlgorithmName("SHA-1");
sha1HashService.setHashIterations(1);
sha1HashService.setGeneratePublicSalt(false);
this.sha1PasswordService.setHashService(sha1HashService);
this.sha1PasswordService.setHashFormat(new HexFormat());
//Initialize and configure md5 password service
this.md5PasswordService = new DefaultPasswordService();
DefaultHashService md5HashService = new DefaultHashService();
md5HashService.setHashAlgorithmName("MD5");
md5HashService.setHashIterations(1);
md5HashService.setGeneratePublicSalt(false);
this.md5PasswordService.setHashService(md5HashService);
this.md5PasswordService.setHashFormat(new HexFormat());
}
示例3: calculateHash
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
private static Hash calculateHash(String password) {
ByteSource privateSalt = ByteSource.Util.bytes(PRIVATE_SALT_BYTES);
DefaultHashService hashService = new DefaultHashService();
hashService.setPrivateSalt(privateSalt);
hashService.setGeneratePublicSalt(true);
hashService.setHashIterations(ITERATIONS);
HashRequest.Builder builder = new HashRequest.Builder();
builder.setSource(ByteSource.Util.bytes(password));
Hash hash = hashService.computeHash(builder.build());
log.info("Hash algorithm {}, iterations {}, public salt {}", hash.getAlgorithmName(), hash.getIterations(), hash.getSalt());
return hash;
}
示例4: genPassword
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
private static String genPassword(final String psw, final String salt, final int iter) {
try {
final DefaultHashService hash = new DefaultHashService();
hash.setPrivateSalt(ByteSource.Util.bytes(STATIC_SALT));
hash.setHashIterations(iter);
hash.setGeneratePublicSalt(false);
hash.setHashAlgorithmName(ALG_NAME);
return hash.computeHash(new HashRequest.Builder().setSource(psw).setSalt(salt).setIterations(iter).build()).toHex();
} catch (final Exception e) {
throw Throwables.propagate(e);
}
}
示例5: DefaultPasswordService
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
public DefaultPasswordService() {
this.hashFormatWarned = false;
DefaultHashService hashService = new DefaultHashService();
hashService.setHashAlgorithmName(DEFAULT_HASH_ALGORITHM);
hashService.setHashIterations(DEFAULT_HASH_ITERATIONS);
hashService.setGeneratePublicSalt(true); //always want generated salts for user passwords to be most secure
this.hashService = hashService;
this.hashFormat = new Shiro1CryptFormat();
this.hashFormatFactory = new DefaultHashFormatFactory();
}
示例6: DefaultSecurityPasswordService
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
@Inject
public DefaultSecurityPasswordService(@Named("legacy") final PasswordService legacyPasswordService) {
this.passwordService = new DefaultPasswordService();
this.legacyPasswordService = checkNotNull(legacyPasswordService);
//Create and set a hash service according to our hashing policies
DefaultHashService hashService = new DefaultHashService();
hashService.setHashAlgorithmName(DEFAULT_HASH_ALGORITHM);
hashService.setHashIterations(DEFAULT_HASH_ITERATIONS);
hashService.setGeneratePublicSalt(true);
this.passwordService.setHashService(hashService);
}
示例7: createPasswordService
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
/**
* Creates the password service without registering it.
*
* @param repo the component repository, only used to register secondary items like lifecycle, not null
* @return the password service, not null
*/
protected PasswordService createPasswordService(ComponentRepository repo) {
DefaultHashService hashService = new DefaultHashService();
hashService.setHashAlgorithmName(getHashAlgorithm());
hashService.setHashIterations(getHashIterations());
hashService.setGeneratePublicSalt(true);
hashService.setPrivateSalt(new SimpleByteSource(getPrivateSalt()));
DefaultPasswordService pwService = new DefaultPasswordService();
pwService.setHashService(hashService);
return pwService;
}
示例8: getPasswordService
import org.apache.shiro.crypto.hash.DefaultHashService; //导入方法依赖的package包/类
public static HashingPasswordService getPasswordService() {
DefaultHashService hashService = new DefaultHashService();
hashService.setHashIterations(HASH_ITERATIONS);
hashService.setHashAlgorithmName(Sha512Hash.ALGORITHM_NAME);
hashService.setGeneratePublicSalt(true);
DefaultPasswordService passwordService = new DefaultPasswordService();
passwordService.setHashService(hashService);
return passwordService;
}