UNPKG

nitlix-crypto

Version:

😍 Another starting collection of hashing, salting and other encryption tools 🚀 for the back-end side of the web.

10 lines (9 loc) 518 B
import hashString from "./hash/hashString"; import hashStringNative from "./hash/hashStringNative"; import saltCompare from "./salt/saltCompare"; import saltString from "./salt/saltString"; import keyEncrypt from "./key/keyEncrypt"; import keyDecrypt from "./key/keyDecrypt"; import saltStringNative from "./salt/saltStringNative"; import saltCompareNative from "./salt/saltCompareNative"; export { hashString, hashStringNative, saltCompare, saltString, keyEncrypt, keyDecrypt, saltStringNative, saltCompareNative, };