HashingService.java 文件源码

java
阅读 27 收藏 0 点赞 0 评论 0

项目:security-karate 作者:
@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);
    }
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号