diff options
Diffstat (limited to 'std/hash/sha256.ts')
-rw-r--r-- | std/hash/sha256.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/hash/sha256.ts b/std/hash/sha256.ts index c5635cacd..61da5a578 100644 --- a/std/hash/sha256.ts +++ b/std/hash/sha256.ts @@ -15,7 +15,7 @@ const HEX_CHARS = "0123456789abcdef".split(""); const EXTRA = [-2147483648, 8388608, 32768, 128] as const; const SHIFT = [24, 16, 8, 0] as const; // prettier-ignore -// dprint-ignore +// deno-fmt-ignore const K = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, |