2

我正在尝试进行需要对特定字符串进行 HmacSHA-256 散列的 XML-RPC 调用。我目前正在使用带有以下代码的 Jasypt 库:

StandardPBEStringEncryptor sha256 = new StandardPBEStringEncryptor();
          sha256.setPassword(key);
          sha256.setAlgorithm("PBEWithHmacSHA2");

在尝试使用 sha256.encrypt(string) 我得到这个错误:

线程“主”org.jasypt.exceptions.EncryptionInitializationException 中的异常:java.security.NoSuchAlgorithmException:PBEWithHmacAndSHA256 SecretKeyFactory 不可用
     在 org.jasypt.encryption.pbe.StandardPBEByteEncryptor.initialize(StandardPBEByteEncryptor.java:597)
     在 org.jasypt.encryption.pbe.StandardPBEStringEncryptor.initialize(StandardPBEStringEncryptor.java:488)
     在 org.jasypt.encryption.pbe.StandardPBEStringEncryptor.encrypt(StandardPBEStringEncryptor.java:541)
     在 nysenateapi.XmlRpc.main(XmlRpc.java:52)
    引起:java.security.NoSuchAlgorithmException:PBEWithHmacAndSHA256 SecretKeyFactory 不可用
     在 javax.crypto.SecretKeyFactory.(DashoA13*..)
     在 javax.crypto.SecretKeyFactory.getInstance(DashoA13*..)
     在 org.jasypt.encryption.pbe.StandardPBEByteEncryptor.initialize(StandardPBEByteEncryptor.java:584)
     ... 3 更多

我下载了 JCE Cryptography 扩展并将罐子放在我的构建路径中,但这似乎没有做任何事情。我尝试在上面的 setAlgorithm 中使用多种组合,包括“PBE”、“PBEWithSha”(1|2|128|256)?、“PBEWithHmacSha”等。

我也尝试过使用 BouncyCastle,但我也没有任何运气。任何帮助或指导表示赞赏!

4

2 回答 2

2

正如@Rook 正确指出的那样,您需要指定一个包含加密算法的 PBE算法。众多示例中的两个示例"PBEWithSHA1AndDESede"SunJCE 提供者支持的和"PBEWITHSHA256AND128BITAES-CBC-BC"Bouncycastle JCE 提供者支持的。

于 2010-10-21T00:24:02.483 回答
1

这些评论很有帮助,但我想我问错了问题。我想做的是模仿 PHP 函数 hash_hmac('sha256',string,key)...

我最终使用了以下代码:

Mac mac = Mac.getInstance("HmacSha256");
SecretKeySpec secret = new SecretKeySpec(key.getBytes(), "HmacSha256");
mac.init(secret);
byte[] shaDigest = mac.doFinal(phrase.getBytes());
String hash = "";
for(byte b:shaDigest) {
    hash += String.format("%02x",b);
}

不过还是谢谢指导。将来一定会帮助我的。

于 2010-10-22T14:06:53.470 回答