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.
23 lines (22 loc) • 650 B
TypeScript
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Interface for creating digital signatures.
*
* Security guarantees: Implementations of these interfaces are secure
* against adaptive chosen-message attacks. Signing data ensures the
* authenticity and the integrity of that data, but not its secrecy.
*
*/
export declare abstract class PublicKeySign {
/**
* Computes the digital signature of `message`.
*
* @param message the message to be signed, must be non-null.
* @return resulting digital signature
*/
abstract sign(message: Uint8Array): Promise<Uint8Array>;
}