edhoc
Version:
A Node.js implementation of EDHOC (Ephemeral Diffie-Hellman Over COSE) protocol for lightweight authenticated key exchange in IoT and other constrained environments.
13 lines • 385 B
TypeScript
export interface CipherSuiteParams {
id: number;
aeadAlgorithm: string;
aeadKeyLength: number;
aeadTagLength: number;
aeadIvLength: number;
hashLength: number;
macLength: number;
eccKeyLength: number;
eccSignLength: number;
}
export declare function getCipherSuiteParams(suite: number): CipherSuiteParams;
//# sourceMappingURL=cipher-suites.d.ts.map