Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
440 B
Text
29 lines
440 B
Text
# crypto-sha256-js
|
|
|
|
A pure JS implementation SHA256.
|
|
|
|
## Usage
|
|
|
|
- To hash "some data"
|
|
```
|
|
import {Sha256} from '@aws-crypto/sha256-js';
|
|
|
|
const hash = new Sha256();
|
|
hash.update('some data');
|
|
const result = await hash.digest();
|
|
|
|
```
|
|
|
|
- To hmac "some data" with "a key"
|
|
```
|
|
import {Sha256} from '@aws-crypto/sha256-js';
|
|
|
|
const hash = new Sha256('a key');
|
|
hash.update('some data');
|
|
const result = await hash.digest();
|
|
|
|
```
|
|
|
|
## Test
|
|
|
|
`npm test`
|