Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 472 Bytes

crypto.md

File metadata and controls

22 lines (15 loc) · 472 Bytes

crypto: Secure hashes

Secure hash and message digest functions.

Provides following functions:

  • md5(data),
  • sha1(data),
  • sha256(data),
  • sha384(data),
  • sha512(data).

Each function expects data to be TEXT or BLOB. Returns a BLOB hash. Use the hex() function to convert it to hex string.

Download

Usage

sqlite> select hex(md5('abc'));
900150983CD24FB0D6963F7D28E17F72