Interfaces #
This Web Crypto API interface provides basic cryptographic functionality.
It is accessed via the global crypto property, which gives access
to cryptographically strong random number generation and to the low-level
primitives exposed by SubtleCrypto through Crypto.subtle.
The CryptoKeyPair dictionary of the Web Crypto API represents a key pair for an asymmetric cryptography algorithm, also known as a public-key algorithm.
This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via globalThis.crypto).
Type Aliases #
Variables #
The global instance of Crypto that provides access to the Web
Crypto API, including cryptographically secure random number generation via
Crypto.getRandomValues, random UUID generation via
Crypto.randomUUID, and the low-level primitives exposed by
SubtleCrypto through Crypto.subtle.