Skip to content

Commit e353f7c

Browse files
committed
fix: links
1 parent 4ae5301 commit e353f7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ declare interface DigestOptions<T> {
2727
* Then, the standard Keccak padding scheme is applied (pad10*1), placing an
2828
* additional bit at the `0x04` position, resulting in `0x06`.
2929
*
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
3131
*/
3232
export class SHA3<S extends 224 | 256 | 384 | 512 = 512> extends Hasher<S> {
3333
/**
@@ -54,7 +54,7 @@ export const SHA3Hash: typeof Keccak;
5454
* > followed by the minimum number of bits 0 followed by a single bit 1 such that
5555
* > the length of the result is a multiple of the block length.
5656
*
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
5858
*/
5959
export class Keccak<S extends 224 | 256 | 384 | 512 = 512> extends Hasher<S> {}
6060

0 commit comments

Comments
 (0)