@Autowired
public HashingService(@Value("${karate.hashing.pepper}") String pepperValue) {
try {
pepper = pepperValue;
salt = getSalt();
digest = MessageDigest.getInstance("SHA-256");
ensureInitOfPepper();
} catch (Exception e) {
//Wrap Exception into RuntimeException...
throw new IllegalStateException("HashingService not correctly intialized!", e);
}
}
HashingService.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:security-karate
作者:
评论列表
文章目录