fix imports

This commit is contained in:
weboko 2023-02-01 01:59:30 +01:00
parent 0bf8f309d2
commit 0090efabaf
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { equals as uint8ArrayEquals } from "uint8arrays/equals";
import { bytes32 } from "./@types/basic";
import { KeyPair } from "./@types/keypair";
import { HKDF } from "./crypto";
import { HKDF } from "./crypto.js";
import { HandshakeState, NoisePaddingBlockSize } from "./handshake_state.js";
import { MessageNametagBuffer, toMessageNametag } from "./messagenametag";
import { CipherState } from "./noise.js";

View File

@ -6,7 +6,7 @@ import { bytes32 } from "./@types/basic.js";
import { MessageNametag } from "./@types/handshake.js";
import type { KeyPair } from "./@types/keypair.js";
import { Curve25519KeySize, dh, generateX25519KeyPair, HKDF, intoCurve25519Key } from "./crypto.js";
import { MessageNametagLength } from "./messagenametag";
import { MessageNametagLength } from "./messagenametag.js";
import { SymmetricState } from "./noise.js";
import { HandshakePattern, MessageDirection, NoiseTokens, PreMessagePattern } from "./patterns.js";
import { NoisePublicKey } from "./publickey.js";