Update README.md

This commit is contained in:
Nicco 2019-07-07 21:44:18 +02:00 committed by GitHub
parent c5547aba06
commit ecb3aec225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,25 +14,13 @@ Supports Hashes, Symmetric AES & ChaCha20 ciphers and Asymmetric RSA.
npm i node-forge occulto
```
```javascript
// Whatever import you prefer
// const { RSA } = require('occulto')
import { RSA } from 'occulto'
const pair = await RSA.gen()
const encrypted = RSA.encrypt('some string', 'myPass')
const decrypted = RSA.decrypt(encrypted, 'myPass')
```
[**📒 DOCS HERE 📒**](https://cupcakearmy.github.io/occulto/index.html)
### Examples
## RSA
```javascript
```typescript
const pair = await RSA.gen()
const encrypted = RSA.encrypt('some text', pair.pub)
const decrypted = RSA.decrypt(encrypted, pair.prv)
@ -41,8 +29,6 @@ const decrypted = RSA.decrypt(encrypted, pair.prv)
## Symmetric
```javascript
// Whatever import you prefer
// const { Symmetric } = require('occulto')
import { Symmetric } from 'occulto'
const encrypted = Symmetric.encrypt('some string' , 'myPass', Symmetric.Ciphers.AES_128_GCM)
@ -51,13 +37,11 @@ const decrypted = Symmetric.decrypt(encrypted, 'myPadd')
## Hash
```javascript
// Whatever import you prefer
// const { Hash } = require('occulto')
```typescript
import { Hash } from 'occulto'
const hash = Hash.digest('something')
const h = Hash.digest('something', Hashes.MD5)
const h = Hash.digest('something', Hash.Hashes.MD5)
```