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

Method sha224

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

Source from the content-addressed store, hash-verified

160
161 /// One-shot HMAC-SHA-224.
162 public static byte[] sha224(byte[] key, byte[] data) {
163 return create(Hash.SHA224, key).doFinal(data);
164 }
165
166 /// One-shot HMAC-SHA-256 (recommended default).
167 public static byte[] sha256(byte[] key, byte[] data) {

Callers

nothing calls this directly

Calls 2

createMethod · 0.95
doFinalMethod · 0.80

Tested by

no test coverage detected