UNPKG

@aviarytech/didcomm-core

Version:

Core methods and interfaces for DIDComm

7 lines (6 loc) 496 B
import { Ed25519KeyPair } from "@transmute/ed25519-key-pair"; import { Bls12381G2KeyPair } from "@mattrglobal/jsonld-signatures-bbs"; import { Secp256k1KeyPair } from "@transmute/secp256k1-key-pair"; import { WebCryptoKey } from "@transmute/web-crypto-key-pair"; import { X25519KeyPair } from "@transmute/x25519-key-pair"; export declare const getKeyPairForType: (k: any) => typeof X25519KeyPair | typeof Ed25519KeyPair | typeof Bls12381G2KeyPair | typeof Secp256k1KeyPair | typeof WebCryptoKey;