MCPcopy Index your code
hub / github.com/ccxt/ccxt / keccakDigest

Method keccakDigest

java/lib/src/main/java/io/github/ccxt/base/Crypto.java:209–214  ·  view source on GitHub ↗
(byte[] data)

Source from the content-addressed store, hash-verified

207 }
208
209 private static byte[] keccakDigest(byte[] data) {
210 Keccak.Digest256 k = new Keccak.Digest256();
211 k.update(data, 0, data.length);
212 return k.digest();
213 // throw new UnsupportedOperationException("Keccak not implemented");
214 }
215
216 // ====================================================
217 // JWT (HS / RS / ES256 / Ed25519)

Callers 2

HashMethod · 0.95
SignKeccakMethod · 0.95

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected