This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs-blog-newsletter/cronjob/node_modules/@aws-crypto/supports-web-crypto/README.md

33 lines
621 B
Markdown
Raw Normal View History

2024-05-26 22:54:55 +02:00
# @aws-crypto/supports-web-crypto
Functions to check web crypto support for browsers.
## Usage
```
import {supportsWebCrypto} from '@aws-crypto/supports-web-crypto';
if (supportsWebCrypto(window)) {
// window.crypto.subtle.encrypt will exist
}
```
## supportsWebCrypto
Used to make sure `window.crypto.subtle` exists and implements crypto functions
as well as a cryptographic secure random source exists.
## supportsSecureRandom
Used to make sure that a cryptographic secure random source exists.
Does not check for `window.crypto.subtle`.
## supportsSubtleCrypto
## supportsZeroByteGCM
## Test
`npm test`