πŸ‘ΎCrypt

Base64 Decode

<string> base64_decode(<string> data)  
  • Decodes data with base64.

Alternative: base64decode


Base64 Encode

<string> base64_encode(<string> data)  
  • Encodes data with base64.

Alternative: base64encode


Decrypt

<string> crypt.decrypt(<string> data, <string> key)  
  • Decrypts data with key.


Derive

<string> crypt.derive(<string> value, <uint> length)
  • Derives a secret key from value with the length of length.


Encrypt

  • Encrypts data with key.


Generate Bytes

  • Generates random bytes based off value.


Generate Key

  • Generates a random key based off value.


Hash

  • Hashes data with SHA-384.


LZ4 Compress

  • Compresses data using lz4.


LZ4 Decompress

  • Decompresses data using lz4.


Random

  • Generates a random string with size (cannot be negative or exceed 1024).


Last updated