Skip to content

Commit f67617e

Browse files
committed
Bump deps
1 parent 6f87eb1 commit f67617e

File tree

8 files changed

+44
-45
lines changed

8 files changed

+44
-45
lines changed

package-lock.json

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"esm"
2020
],
2121
"dependencies": {
22-
"@noble/ciphers": "1.2.1",
23-
"@noble/curves": "1.8.1",
24-
"@noble/hashes": "1.7.1",
25-
"@scure/bip32": "1.6.2",
26-
"@scure/bip39": "1.5.4"
22+
"@noble/ciphers": "1.3.0",
23+
"@noble/curves": "1.9.0",
24+
"@noble/hashes": "1.8.0",
25+
"@scure/bip32": "1.7.0",
26+
"@scure/bip39": "1.6.0"
2727
},
2828
"exports": {
2929
".": {

src/blake2b.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { blake2b as _blake2b } from "@noble/hashes/blake2b";
1+
import { blake2b as _blake2b } from "@noble/hashes/blake2";
22
import { assertBytes } from "./utils.js";
33

44
export const blake2b = (msg: Uint8Array, outputLength = 64): Uint8Array => {

src/pbkdf2.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import {
22
pbkdf2 as _pbkdf2,
33
pbkdf2Async as _pbkdf2Async
44
} from "@noble/hashes/pbkdf2";
5-
import { sha256 } from "@noble/hashes/sha256";
6-
import { sha512 } from "@noble/hashes/sha512";
5+
import { sha256, sha512 } from "@noble/hashes/sha2";
76
import { assertBytes } from "./utils.js";
87

98
export async function pbkdf2(

src/ripemd160.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ripemd160 as _ripemd160 } from "@noble/hashes/ripemd160";
1+
import { ripemd160 as _ripemd160 } from "@noble/hashes/legacy";
22
import { wrapHash } from "./utils.js";
33

44
export const ripemd160 = wrapHash(_ripemd160);

src/sha256.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { sha256 as _sha256 } from "@noble/hashes/sha256";
1+
import { sha256 as _sha256 } from "@noble/hashes/sha2";
22
import { wrapHash } from "./utils.js";
33

44
export const sha256 = wrapHash(_sha256);

src/sha512.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { sha512 as _sha512 } from "@noble/hashes/sha512";
1+
import { sha512 as _sha512 } from "@noble/hashes/sha2";
22
import { wrapHash } from "./utils.js";
33

44
export const sha512 = wrapHash(_sha512);

test/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)