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

https://github.com/kevindasilvas/kcrypt

Kcrypt or Krypt is an encrypting and decrypting lib created using javascript and node js
https://github.com/kevindasilvas/kcrypt

cryptography javascript node node-js nodejs

Last synced: about 1 month ago
JSON representation

Kcrypt or Krypt is an encrypting and decrypting lib created using javascript and node js

Awesome Lists containing this project

README

          

# kcrypt

Kcrypt or Krypt is an encrypting and decrypting lib created using javascript and node js


To encrypt:

//call krypt method


krypt("ARca")

`
//outputs: GIJ<-->XZ[<-->ikl<-->gij<-->
`

To decrypt:

//call unkrypt method

`
unkrypt("GIJ<-->XZ[<-->ikl<-->gij<-->")
`
`
returns "ARca"
`