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