> For the complete documentation index, see [llms.txt](https://help.bots.business/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.bots.business/libs/cryptojs.md).

# CryptoJS

JavaScript library of crypto standards. It is **included by default** - installation is not required.

## Usage

```javascript
var hash = CryptoJS.HmacSHA1("Message", "Key")
Bot.sendMessage(String(hash));

hash = CryptoJS.HmacSHA256("Message", "Secret Passphrase");
Bot.sendMessage(String(hash));
```

**Documentation**: [https://cryptojs.gitbook.io/docs](https://cryptojs.gitbook.io/docs/)
