分享

java hmac ssh256

 xue_dong5437 2011-09-15
   public String encode() throws NoSuchAlgorithmException, InvalidKeyException{
    SecretKey secretKey= new SecretKeySpec("abc".getBytes(), "HmacSHA256");  
    Mac mac=Mac.getInstance(secretKey.getAlgorithm());  
    mac.init(secretKey); 
    String str = "hello world";
       return convertToHex( mac.doFinal(str.getBytes()));
    }
    
private  String convertToHex(byte[] data)
{
StringBuffer buf = new StringBuffer();
for (int i = 0; i < data.length; i++)
{
int halfbyte = (data[i] >>> 4) & 0x0F;
int two_halfs = 0;
do
{
if ((0 <= halfbyte) && (halfbyte <= 9))
buf.append((char) ('0' + halfbyte));
else
buf.append((char) ('a' + (halfbyte - 10)));
halfbyte = data[i] & 0x0F;
}
while (two_halfs++ < 1);
}
return buf.toString();
}

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约