Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/crypto/digest/MAC.java @ 377:4226f87534f4
remove hmac-sha2-512 - fails interop w/ centos6
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 04 Aug 2014 14:51:38 -0700 |
parents | 8c1451f51a5e |
children |
comparison
equal
deleted
inserted
replaced
376:711ad4cf87b6 | 377:4226f87534f4 |
---|---|
18 private int size; | 18 private int size; |
19 | 19 |
20 public static String[] getMacList() { | 20 public static String[] getMacList() { |
21 // Higher priority (stronger) first. Added SHA-2 algorithms as in RFC 6668 | 21 // Higher priority (stronger) first. Added SHA-2 algorithms as in RFC 6668 |
22 return new String[] { | 22 return new String[] { |
23 "hmac-sha2-512", | 23 // "hmac-sha2-512", // fails interop w/ centos6 |
24 "hmac-sha2-256", | 24 "hmac-sha2-256", |
25 "hmac-sha1", | 25 "hmac-sha1", |
26 "hmac-sha1-96", | 26 "hmac-sha1-96", |
27 "hmac-md5", | 27 "hmac-md5", |
28 "hmac-md5-96" | 28 "hmac-md5-96" |