django-vue3-admin-web/node_modules/aws-crt/lib/common/crypto.ts
2025-10-20 21:21:14 +08:00

20 lines
408 B
TypeScript

/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
/**
*
* A module containing support for a variety of cryptographic operations.
*
* @packageDocumentation
* @module crypto
*/
/**
* The types that are acceptable to use as input for hashing.
*
* @category Crypto
*/
export type Hashable = string | ArrayBuffer | DataView | Buffer;