java - 如何在 Java 中使用 BouncyCaSTLe API 对密码进行加密和加盐?

标签 java encryption bouncycastle salt

我对加密相当陌生,我正在使用BouncyCasetle API加密密码并将其存储在数据库中。对于加密,我使用SHA-1算法,并且我想对密码加盐以防止字典攻击。

如有任何帮助,我们将不胜感激。

最佳答案

我建议使用基于密码的 key 派生函数而不是基本的哈希函数。像这样的事情:

// tuning parameters

// these sizes are relatively arbitrary
int seedBytes = 20;
int hashBytes = 20;

// increase iterations as high as your performance can tolerate
// since this increases computational cost of password guessing
// which should help security
int iterations = 1000;

// to save a new password:

SecureRandom rng = new SecureRandom();
byte[] salt = rng.generateSeed(seedBytes);

Pkcs5S2ParametersGenerator kdf = new Pkcs5S2ParametersGenerator();
kdf.init(passwordToSave.getBytes("UTF-8"), salt, iterations);

byte[] hash =
    ((KeyParameter) kdf.generateDerivedMacParameters(8*hashBytes)).getKey();

// now save salt and hash

// to check a password, given the known previous salt and hash:

kdf = new Pkcs5S2ParametersGenerator();
kdf.init(passwordToCheck.getBytes("UTF-8"), salt, iterations);

byte[] hashToCheck =
    ((KeyParameter) kdf.generateDerivedMacParameters(8*hashBytes)).getKey();

// if the bytes of hashToCheck don't match the bytes of hash
// that means the password is invalid

关于java - 如何在 Java 中使用 BouncyCaSTLe API 对密码进行加密和加盐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21565369/

相关文章:

java - 在android中显示unicode字符?

java - 无法在 Debug模式下启动服务器: hybrisserver. bat

java - Java中的重复字符串达到一定长度

java - 在 Java 中对 DES.EXE 中的文件进行 DES 解密

java - 使用 Java 或 BouncyCaSTLe 解码/读取 CSR(证书签名请求)

java - 修改WEB-INF文件夹下的文件-tomcat作为热部署

java - 使用 JNI 将 float* 转换为 jfloatArray

java - Java 5 中的 AES 256 加密支持

java - 将签名转换为人类可读 (bouncycaSTLe)

java.lang.NoSuchMethodError : org. bouncycaSTLe.asn1.DERSequence.<init>(Lorg/bouncycaSTLe/asn1/DEREncodableVector;)V