Add missing file extensions to imports

This commit is contained in:
Alex Gleason
2024-03-18 11:51:00 -05:00
parent 632184afb8
commit ad07d260ab
12 changed files with 26 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
import { scrypt } from '@noble/hashes/scrypt'
import { xchacha20poly1305 } from '@noble/ciphers/chacha'
import { concatBytes, randomBytes } from '@noble/hashes/utils'
import { Bech32MaxSize, encodeBytes } from './nip19'
import { Bech32MaxSize, encodeBytes } from './nip19.ts'
import { bech32 } from '@scure/base'
export function encrypt(sec: Uint8Array, password: string, logn: number = 16, ksb: 0x00 | 0x01 | 0x02 = 0x02): string {