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.
14 lines (13 loc) • 767 B
TypeScript
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { SignatureKeyTemplates } from './signature_key_templates';
export declare function register(): void;
export declare const ecdsaP256KeyTemplate: typeof SignatureKeyTemplates.ecdsaP256;
export declare const ecdsaP384KeyTemplate: typeof SignatureKeyTemplates.ecdsaP384;
export declare const ecdsaP521KeyTemplate: typeof SignatureKeyTemplates.ecdsaP521;
export declare const ecdsaP256IeeeEncodingKeyTemplate: typeof SignatureKeyTemplates.ecdsaP256IeeeEncoding;
export declare const ecdsaP384IeeeEncodingKeyTemplate: typeof SignatureKeyTemplates.ecdsaP384IeeeEncoding;
export declare const ecdsaP521IeeeEncodingKeyTemplate: typeof SignatureKeyTemplates.ecdsaP521IeeeEncoding;