An open API service indexing awesome lists of open source software.

https://github.com/nozzlegear/crypto-js.d.ts

A Typescript/Typings definition for crypto-js.
https://github.com/nozzlegear/crypto-js.d.ts

Last synced: 7 months ago
JSON representation

A Typescript/Typings definition for crypto-js.

Awesome Lists containing this project

README

          

# crypto-js.d.ts

An Typescript definition for [crypto-js](https://www.npmjs.com/package/crypto-js).

### Installation

Using [typings](https://github.com/typings/typings):

```bash
typings install github:nozzlegear/crypto-js.d.ts --save
```

### Usage

```js
import * as crypto from "crypto-js";

const hash = crypto.HmacSHA256(message, key);
```