Skip to content

Commit 839ff99

Browse files
committed
chore: wip
1 parent a0c741f commit 839ff99

8 files changed

Lines changed: 210 additions & 210 deletions

File tree

bun.lock

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

src/baseN.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const ALPHABETS = {
1616
BASE58: '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz',
1717
BASE62: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
1818
BASE64: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/',
19-
BASE67: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.!~'
19+
BASE67: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.!~',
2020
} as const
2121

2222
// Type definitions

src/ed25519.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
const forge = require('./forge')
12
/**
23
* JavaScript implementation of Ed25519.
34
*
@@ -8,11 +9,10 @@
89
*
910
* https://github.com/dchest/tweetnacl-js
1011
*/
11-
const forge = require('./forge')
12+
import { ByteStringBuffer } from './utils'
1213
require('./jsbn')
1314
require('./random')
1415
require('./sha512')
15-
require('./util')
1616
const asn1Validator = require('./asn1-validator')
1717

1818
const publicKeyValidator = asn1Validator.publicKeyValidator

0 commit comments

Comments
 (0)