项目作者: jedisct1

项目描述 :
SHA-256, SHA-512, HMAC-SHA-256, HMAC-SHA-512 for AssemblyScript.
高级语言: TypeScript
项目地址: git://github.com/jedisct1/as-hmac-sha2.git
创建时间: 2021-05-13T14:19:19Z
项目社区:https://github.com/jedisct1/as-hmac-sha2

开源协议:

下载


HMAC-SHA-256 and HMAC-SHA-512 for AssemblyScript

Self-contained implementations of SHA-256, SHA-512, HMAC-SHA-256 and HMAC-SHA-512 for AssemblyScript.

Simple hashing:

  1. let msg = Uint8Array.wrap(String.UTF8.encode("test"));
  2. let h = Sha256.hash(msg);

Chunked input:

  1. let st = new Sha256();
  2. st.update(msg1);
  3. st.update(msg2);
  4. let h = st.final();

HMAC:

  1. let msg = Uint8Array.wrap(String.UTF8.encode("message"));
  2. let key = Uint8Array.wrap(String.UTF8.encode("key"));
  3. let mac = Sha256.hmac(msg, key);

Constant-time check for equality:

  1. let ok = verify(mac, expected_mac);

Constant-time hexadecimal encoding/decoding:

  1. let hex = bin2hex(h);
  2. let bin = hex2bin(hex);