我正在运行一个IBM教程的示例,该教程有一个简单的示例,可以在给定的纯文本上生成MAC。代码如下:
public static void main(String[] args) throws Exception {
//
// check args and get plaintext
if (args.length != 1) {
System.err
.println("Usage: java MessageAuthenticationCodeExample text");
System.exit(1);
}
byte[] plainText = args[0].getBytes("UTF8");
//
// get a key for the HmacMD5 algorithm
System.out.println("\nStart generating key");
KeyGenerator keyGen = KeyGenerator.getInstance("HmacMD5");
SecretKey MD5key = keyGen.generateKey();
System.out.println("Finish generating key");
//
// get a MAC object and update it with the plaintext
Mac mac = Mac.getInstance("HmacMD5");
mac.init(MD5key);
mac.update(plainText);
//
// print out the provider used and the MAC
System.out.println("\n" + mac.getProvider().getInfo());
System.out.println("\nMAC: ");
System.out.println(new String(mac.doFinal(), "UTF8"));
}
这一切都很好但是使用String arg运行它“这是一个测试”我得到以下输出:
在实际教程中,MAC输出的格式要好得多,例如。
MAC:
Dkdj47x4#.@kd#n8a-x>
,很好,我的意思是我真正认识到的人物!
我认为使用“UTF8”参数可以达到这个目的,但我可能错了,所以有人能告诉我如何将输出格式化为上述格式吗?
答案 0 :(得分:0)
MAC的输出是一个字节数组。它不是UTF-8字符序列,您可以以有意义的方式将其转换为字符串。如果你想从中得到可读的东西,有些选择是:
出于快速和肮脏的例子的目的,你可以使用
new String(mac.doFinal(), "ISO-8859-1")
你可能会得到或多或少的可读性。但是,如果你运气不好,你的mac将包含会干扰输出的控制字符。