Skip to content

Commit a7ec4c4

Browse files
committed
Publish
- @stablelib/aead@2.0.0 - @stablelib/aes@2.0.0 - @stablelib/aes-kw@2.0.0 - @stablelib/base64@2.0.0 - @stablelib/benchmark@2.0.0 - @stablelib/binary@2.0.0 - @stablelib/blake2b@2.0.0 - @stablelib/blake2s@2.0.0 - @stablelib/blake2xs@2.0.0 - @stablelib/blockcipher@2.0.0 - @stablelib/bytereader@2.0.0 - @stablelib/bytes@2.0.0 - @stablelib/bytewriter@2.0.0 - @stablelib/cbor@2.0.0 - @stablelib/chacha@2.0.0 - @stablelib/chacha-drbg@2.0.0 - @stablelib/chacha20poly1305@2.0.0 - @stablelib/cmac@2.0.0 - @stablelib/constant-time@2.0.0 - @stablelib/ctr@2.0.0 - @stablelib/ed25519@2.0.0 - @stablelib/float@2.0.0 - @stablelib/gcm@2.0.0 - @stablelib/gf256@2.0.0 - @stablelib/halfsiphash@2.0.0 - @stablelib/hash@2.0.0 - @stablelib/hex@2.0.0 - @stablelib/hkdf@2.0.0 - @stablelib/hmac@2.0.0 - @stablelib/hmac-drbg@2.0.0 - @stablelib/int@2.0.0 - @stablelib/keyagreement@2.0.0 - @stablelib/nacl@2.0.0 - @stablelib/newhope@2.0.0 - @stablelib/pbkdf2@2.0.0 - @stablelib/poly1305@2.0.0 - @stablelib/random@2.0.0 - @stablelib/salsa20@2.0.0 - @stablelib/scrypt@2.0.0 - @stablelib/sha224@2.0.0 - @stablelib/sha256@2.0.0 - @stablelib/sha3@2.0.0 - @stablelib/sha384@2.0.0 - @stablelib/sha512@2.0.0 - @stablelib/sha512_256@2.0.0 - @stablelib/siv@2.0.0 - @stablelib/snappy@2.0.0 - @stablelib/tss@2.0.0 - @stablelib/utf8@2.0.0 - @stablelib/uuid@2.0.0 - @stablelib/wipe@2.0.0 - @stablelib/x25519@2.0.0 - @stablelib/x25519-session@2.0.0 - @stablelib/xchacha20@2.0.0 - @stablelib/xchacha20poly1305@2.0.0 - @stablelib/xsalsa20@2.0.0
1 parent 2ae155f commit a7ec4c4

File tree

56 files changed

+294
-294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+294
-294
lines changed

packages/aead/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/aead",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "AEAD interface declaration (authenticated encryption with associated data)",
55
"main": "./lib/aead.js",
66
"type": "module",

packages/aes-kw/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/aes-kw",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "AES KW (Advanced Encryption Standard Key Wrapping)",
55
"main": "./lib/aes-kw.js",
66
"type": "module",
@@ -26,13 +26,13 @@
2626
"test": "vitest run"
2727
},
2828
"dependencies": {
29-
"@stablelib/aes": "^1.0.1",
30-
"@stablelib/binary": "^1.0.1",
31-
"@stablelib/blockcipher": "^1.0.1",
32-
"@stablelib/constant-time": "^1.0.1",
33-
"@stablelib/wipe": "^1.0.1"
29+
"@stablelib/aes": "^2.0.0",
30+
"@stablelib/binary": "^2.0.0",
31+
"@stablelib/blockcipher": "^2.0.0",
32+
"@stablelib/constant-time": "^2.0.0",
33+
"@stablelib/wipe": "^2.0.0"
3434
},
3535
"devDependencies": {
36-
"@stablelib/hex": "^1.0.1"
36+
"@stablelib/hex": "^2.0.0"
3737
}
3838
}

packages/aes/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/aes",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "AES block cipher (Advanced Encryption Standard)",
55
"main": "./lib/aes.js",
66
"type": "module",
@@ -20,12 +20,12 @@
2020
"bench": "node ./lib/aes.bench.js"
2121
},
2222
"dependencies": {
23-
"@stablelib/binary": "^1.0.1",
24-
"@stablelib/blockcipher": "^1.0.1",
25-
"@stablelib/wipe": "^1.0.1"
23+
"@stablelib/binary": "^2.0.0",
24+
"@stablelib/blockcipher": "^2.0.0",
25+
"@stablelib/wipe": "^2.0.0"
2626
},
2727
"devDependencies": {
28-
"@stablelib/benchmark": "^1.0.1",
29-
"@stablelib/hex": "^1.0.1"
28+
"@stablelib/benchmark": "^2.0.0",
29+
"@stablelib/hex": "^2.0.0"
3030
}
3131
}

packages/base64/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/base64",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "Base64 encoding and decoding",
55
"main": "./lib/base64.js",
66
"type": "module",
@@ -20,6 +20,6 @@
2020
"bench": "node ./lib/base64.bench.js"
2121
},
2222
"devDependencies": {
23-
"@stablelib/benchmark": "^1.0.1"
23+
"@stablelib/benchmark": "^2.0.0"
2424
}
2525
}

packages/benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/benchmark",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "StableLib benchmarking suite",
55
"main": "./lib/benchmark.js",
66
"type": "module",

packages/binary/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/binary",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "Binary encoding and decoding",
55
"main": "./lib/binary.js",
66
"type": "module",
@@ -19,6 +19,6 @@
1919
"test": "vitest run"
2020
},
2121
"dependencies": {
22-
"@stablelib/int": "^1.0.1"
22+
"@stablelib/int": "^2.0.0"
2323
}
2424
}

packages/blake2b/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/blake2b",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "BLAKE2b cryptographic hash function",
55
"main": "./lib/blake2b.js",
66
"type": "module",
@@ -20,12 +20,12 @@
2020
"bench": "node ./lib/blake2b.bench.js"
2121
},
2222
"dependencies": {
23-
"@stablelib/binary": "^1.0.1",
24-
"@stablelib/hash": "^1.0.1",
25-
"@stablelib/wipe": "^1.0.1"
23+
"@stablelib/binary": "^2.0.0",
24+
"@stablelib/hash": "^2.0.0",
25+
"@stablelib/wipe": "^2.0.0"
2626
},
2727
"devDependencies": {
28-
"@stablelib/benchmark": "^1.0.1",
29-
"@stablelib/hex": "^1.0.1"
28+
"@stablelib/benchmark": "^2.0.0",
29+
"@stablelib/hex": "^2.0.0"
3030
}
3131
}

packages/blake2s/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/blake2s",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "BLAKE2s cryptographic hash function",
55
"main": "./lib/blake2s.js",
66
"type": "module",
@@ -20,12 +20,12 @@
2020
"bench": "node ./lib/blake2s.bench.js"
2121
},
2222
"dependencies": {
23-
"@stablelib/binary": "^1.0.1",
24-
"@stablelib/hash": "^1.0.1",
25-
"@stablelib/wipe": "^1.0.1"
23+
"@stablelib/binary": "^2.0.0",
24+
"@stablelib/hash": "^2.0.0",
25+
"@stablelib/wipe": "^2.0.0"
2626
},
2727
"devDependencies": {
28-
"@stablelib/benchmark": "^1.0.1",
29-
"@stablelib/hex": "^1.0.1"
28+
"@stablelib/benchmark": "^2.0.0",
29+
"@stablelib/hex": "^2.0.0"
3030
}
3131
}

packages/blake2xs/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/blake2xs",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "BLAKE2xs cryptographic extended output function (XOF)",
55
"main": "./lib/blake2xs.js",
66
"type": "module",
@@ -20,13 +20,13 @@
2020
"bench": "node ./lib/blake2xs.bench.js"
2121
},
2222
"dependencies": {
23-
"@stablelib/blake2s": "^1.0.1",
24-
"@stablelib/hash": "^1.0.1",
25-
"@stablelib/wipe": "^1.0.1"
23+
"@stablelib/blake2s": "^2.0.0",
24+
"@stablelib/hash": "^2.0.0",
25+
"@stablelib/wipe": "^2.0.0"
2626
},
2727
"devDependencies": {
28-
"@stablelib/benchmark": "^1.0.1",
29-
"@stablelib/bytes": "^1.0.1",
30-
"@stablelib/hex": "^1.0.1"
28+
"@stablelib/benchmark": "^2.0.0",
29+
"@stablelib/bytes": "^2.0.0",
30+
"@stablelib/hex": "^2.0.0"
3131
}
3232
}

packages/blockcipher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stablelib/blockcipher",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "Block cipher interface declaration",
55
"main": "./lib/blockcipher.js",
66
"type": "module",

0 commit comments

Comments
 (0)