File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ declare interface DigestOptions<T> {
27
27
* Then, the standard Keccak padding scheme is applied (pad10*1), placing an
28
28
* additional bit at the `0x04` position, resulting in `0x06`.
29
29
*
30
- * https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf, Section B.2
30
+ * @see { @link https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf} , Section B.2
31
31
*/
32
32
export class SHA3 < S extends 224 | 256 | 384 | 512 = 512 > extends Hasher < S > {
33
33
/**
@@ -54,7 +54,7 @@ export const SHA3Hash: typeof Keccak;
54
54
* > followed by the minimum number of bits 0 followed by a single bit 1 such that
55
55
* > the length of the result is a multiple of the block length.
56
56
*
57
- * https://keccak.team/files/Keccak-reference-3.0.pdf, Section 1.1.2
57
+ * @see { @link https://keccak.team/files/Keccak-reference-3.0.pdf} , Section 1.1.2
58
58
*/
59
59
export class Keccak < S extends 224 | 256 | 384 | 512 = 512 > extends Hasher < S > { }
60
60
You can’t perform that action at this time.
0 commit comments