sha224()
是一个用于计算提供的二进制字符串的 SHA-224 哈希值的系统函数。
sha224()
在 PostgreSQL 11 中添加。
示例
sha224()
的基本用法示例
postgres=# SELECT sha224('foo'::bytea); sha224 ------------------------------------------------------------ \x0808f64e60d58979fcb676c96ec938270dea42445aeefcd3a4e6f8db (1 row)
将生成的哈希值作为 text
字符串返回
postgres=# SELECT encode(sha224('foo'::bytea), 'hex'); encode ---------------------------------------------------------- 0808f64e60d58979fcb676c96ec938270dea42445aeefcd3a4e6f8db (1 row)
参考文献
- PostgreSQL 文档: 其他二进制字符串函数