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.

17 lines (16 loc) 535 B
/** * @license * Copyright 2020 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import * as PrimitiveSet from '../internal/primitive_set'; import { PrimitiveWrapper } from '../internal/primitive_wrapper'; import { PublicKeyVerify } from './internal/public_key_verify'; export declare class PublicKeyVerifyWrapper implements PrimitiveWrapper<PublicKeyVerify> { /** */ wrap(primitiveSet: PrimitiveSet.PrimitiveSet<PublicKeyVerify>): PublicKeyVerify; /** */ getPrimitiveType(): typeof PublicKeyVerify; }