2019-02-07 19:45:47 +03:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-06 22:39:50 +01:00
|
|
|
import { test } from "../testing/mod.ts";
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assertEquals } from "../testing/asserts.ts";
|
2019-01-12 10:56:35 +08:00
|
|
|
import { Sha1 } from "./sha1.ts";
|
2019-01-07 04:26:18 +09:00
|
|
|
|
|
|
|
test(function testSha1() {
|
2019-03-05 02:23:04 +03:00
|
|
|
const sha1 = new Sha1();
|
2019-01-07 04:26:18 +09:00
|
|
|
sha1.update("abcde");
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
|
2019-03-05 02:23:04 +03:00
|
|
|
});
|
2019-01-24 17:55:24 +02:00
|
|
|
|
2019-03-05 02:23:04 +03:00
|
|
|
test(function testSha1WithArray() {
|
2019-01-24 17:55:24 +02:00
|
|
|
const data = Uint8Array.of(0x61, 0x62, 0x63, 0x64, 0x65);
|
2019-03-05 02:23:04 +03:00
|
|
|
const sha1 = new Sha1();
|
2019-01-24 17:55:24 +02:00
|
|
|
sha1.update(data);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
|
2019-03-05 02:23:04 +03:00
|
|
|
});
|
2019-01-24 17:55:24 +02:00
|
|
|
|
2019-03-05 02:23:04 +03:00
|
|
|
test(function testSha1WithBuffer() {
|
|
|
|
const data = Uint8Array.of(0x61, 0x62, 0x63, 0x64, 0x65);
|
|
|
|
const sha1 = new Sha1();
|
2019-01-24 17:55:24 +02:00
|
|
|
sha1.update(data.buffer);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
|
2019-01-07 04:26:18 +09:00
|
|
|
});
|