如何在Java中生成一个相当于Python示例的HMAC?
我正在考虑实现一个应用程序,通过Java中的Oauth获得Twitter授权。第一步是获取请求令牌。下面是应用引擎的 Python 示例。
为了测试我的代码,我正在运行Python并使用Java检查输出。下面是 Python 生成基于哈希的消息身份验证代码 (HMAC) 的示例:
#!/usr/bin/python
from hashlib import sha1
from hmac import new as hmac
key = "qnscAdgRlkIhAUPY44oiexBKtQbGY0orf7OV1I50"
message = "foo"
print "%s" % hmac(key, message, sha1).digest().encode('base64')[:-1]
输出:
$ ./foo.py
+3h2gpjf4xcynjCGU5lbdMBwGOc=
如何在Java中复制此示例?
我在Java中看到了HMAC的一个例子:
try {
// Generate a key for the HMAC-MD5 keyed-hashing algorithm; see RFC 2104
// In practice, you would save this key.
KeyGenerator keyGen = KeyGenerator.getInstance("HmacMD5");
SecretKey key = keyGen.generateKey();
// Create a MAC object using HMAC-MD5 and initialize with key
Mac mac = Mac.getInstance(key.getAlgorithm());
mac.init(key);
String str = "This message will be digested";
// Encode the string into bytes using utf-8 and digest it
byte[] utf8 = str.getBytes("UTF8");
byte[] digest = mac.doFinal(utf8);
// If desired, convert the digest into a string
String digestB64 = new sun.misc.BASE64Encoder().encode(digest);
} catch (InvalidKeyException e) {
} catch (NoSuchAlgorithmException e) {
} catch (UnsupportedEncodingException e) {
}
它使用javax.crypto.Mac,一切都很好。但是,SecretKey 构造函数采用字节和算法。
Python示例中的算法是什么?如何在没有算法的情况下创建Java密钥?