Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal authored Aug 19, 2020
1 parent 23eccb4 commit b2f6829
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,22 @@ A pure Javascript/Typescript cryptography implementation for Deno. We will try t

### [AES](https://github.com/invisal/god_crypto/wiki/AES) | [RSA](https://github.com/invisal/god_crypto/wiki/RSA) | [HMAC](https://github.com/invisal/god_crypto/wiki/HMAC) | [TOTP](https://github.com/invisal/god_crypto/wiki/TOTP)

<br />
Click here for complete document:
Click here for complete document: [Complete Documents](https://github.com/invisal/god_crypto/wiki)

- [Complete Documents](https://github.com/invisal/god_crypto/wiki)
## Modules

<br />
You can choose to include the whole `god_crypto` implementation or just include module that you need.

```
// Load everything
import { AES, RSA, TOTP, hmac, encode } from "https://deno.land/x/god_crypto/mod.ts";
// Load what you need
import { AES } from "https://deno.land/x/god_crypto/aes.ts";
import { RSA } from "https://deno.land/x/god_crypto/rsa.ts";
import { TOTP } from "https://deno.land/x/god_crypto/otp.ts";
import { hmac } from "https://deno.land/x/god_crypto/hmac.ts";
```

---

Expand Down

0 comments on commit b2f6829

Please sign in to comment.