sm3摘要 @param params @return
(byte[]... params)
| 100 | * @return |
| 101 | */ |
| 102 | private static byte[] sm3hash(byte[]... params) { |
| 103 | byte[] res = null; |
| 104 | try { |
| 105 | res = SM3.hash(join(params)); |
| 106 | } catch (IOException e) { |
| 107 | // TODO Auto-generated catch block |
| 108 | e.printStackTrace(); |
| 109 | } |
| 110 | return res; |
| 111 | } |
| 112 | |
| 113 | // /** |
| 114 | // * SHA摘要 |
no test coverage detected