選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

17 行
507 B

  1. import { stringToArrayBuffer, arrayBufferToHex, getAlgorithm } from ".";
  2. test("stringToArrayBuffer", () => {
  3. expect(stringToArrayBuffer("ȧ")[0]).toBe(200);
  4. expect(stringToArrayBuffer("ȧ")[1]).toBe(167);
  5. });
  6. test("arrayBufferToHex", () => {
  7. expect(arrayBufferToHex(new Uint8Array([200, 167]))).toBe("c8a7");
  8. });
  9. test("getAlgorithm", () => {
  10. expect(getAlgorithm("sha-256")).toBe("SHA-256");
  11. expect(getAlgorithm("sha256")).toBe("SHA-256");
  12. expect(getAlgorithm("ShA-256")).toBe("SHA-256");
  13. });