πΎCrypt
Base64 Decode
<string> base64_decode(<string> data) Decodes
datawith base64.
Alternative:
base64decode
Base64 Encode
<string> base64_encode(<string> data) Encodes
datawith base64.
Alternative:
base64encode
Decrypt
<string> crypt.decrypt(<string> data, <string> key) Decrypts
datawithkey.
Derive
<string> crypt.derive(<string> value, <uint> length)Derives a secret key from
valuewith the length oflength.
Encrypt
Encrypts
datawithkey.
Generate Bytes
Generates random bytes based off
value.
Generate Key
Generates a random key based off
value.
Hash
Hashes
datawith SHA-384.
LZ4 Compress
Compresses
datausing lz4.
LZ4 Decompress
Decompresses
datausing lz4.
Random
Generates a random string with
size(cannot be negative or exceed 1024).
Last updated