MCPcopy Index your code
hub / github.com/SeanDragon/protools / sm3hash

Method sm3hash

security/src/main/java/pro/tools/security/sm/SM2.java:102–111  ·  view source on GitHub ↗

sm3摘要 @param params @return

(byte[]... params)

Source from the content-addressed store, hash-verified

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摘要

Callers 9

ZAMethod · 0.95
KDFMethod · 0.95
encryptMethod · 0.95
decryptMethod · 0.95
signMethod · 0.95
verifyMethod · 0.95
keyExchange_2Method · 0.80
keyExchange_3Method · 0.80
keyExchange_4Method · 0.80

Calls 2

hashMethod · 0.95
joinMethod · 0.95

Tested by

no test coverage detected