UNPKG

tink-crypto

Version:

A multi-language, cross-platform library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.

13 lines (12 loc) 278 B
/** * @license * Copyright 2022 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Interface that wraps output from HPKE KEM Encap() method. */ export interface HpkeKemEncapOutput { readonly sharedSecret: Uint8Array; readonly encapsulatedKey: Uint8Array; }