MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / sha384

Method sha384

CodenameOne/src/com/codename1/security/Hmac.java:172–174  ·  view source on GitHub ↗
(byte[] key, byte[] data)

Source from the content-addressed store, hash-verified

170
171 /// One-shot HMAC-SHA-384.
172 public static byte[] sha384(byte[] key, byte[] data) {
173 return create(Hash.SHA384, key).doFinal(data);
174 }
175
176 /// One-shot HMAC-SHA-512.
177 public static byte[] sha512(byte[] key, byte[] data) {

Callers

nothing calls this directly

Calls 2

createMethod · 0.95
doFinalMethod · 0.80

Tested by

no test coverage detected