@dfinity/identity
Version:
JavaScript and TypeScript library to manage identity with the Internet Computer
15 lines • 634 B
JavaScript
export { Ed25519KeyIdentity, Ed25519PublicKey } from "./identity/ed25519.js";
export * from "./identity/ecdsa.js";
export * from "./identity/delegation.js";
export * from "./identity/partial.js";
export { WebAuthnIdentity } from "./identity/webauthn.js";
export { wrapDER, unwrapDER, DER_COSE_OID, ED25519_OID } from '@dfinity/agent';
/**
* @deprecated due to size of dependencies. Use `@dfinity/identity-secp256k1` instead.
*/
export class Secp256k1KeyIdentity {
constructor() {
throw new Error('Secp256k1KeyIdentity has been moved to a new repo: @dfinity/identity-secp256k1');
}
}
//# sourceMappingURL=index.js.map