gpt4 book ai didi

java - getencoded 后 key 仍然与密码相同

转载 作者:行者123 更新时间:2023-11-30 11:38:10 28 4
gpt4 key购买 nike

我有一个使用 PBE 生成 key 的函数,我在网上搜索并找到了以下代码。

class PBE{
public PBE(String pw) {
this.password = pw;
}
public SecretKey generateKey() throws NoSuchAlgorithmException, InvalidKeySpecException {
// make password
PBEKeySpec keySpec = new PBEKeySpec(this.password.toCharArray(),this.salt,20);
// create key instance
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
// generate key
SecretKey key = keyFactory.generateSecret(keySpec);
return key;
}
}

我用这个函数作为

PBE myPBE = new PBE("102a102s");
SecretKey myKey = myPBE.generateKey();
System.out.println(myKey.getEncoded());

然而,输出与我输入的密码相同。不知道为什么

最佳答案

根据 documentation , getEncoded() 返回

an external encoded form for the key used when a standard representation of the key is needed outside the Java Virtual Machine, as when transmitting the key to some other party

由于您使用基于密码的加密,密码的外部形式就是密码本身,因此这种行为是正确的。

关于java - getencoded 后 key 仍然与密码相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13719376/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com