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文档: 其他二进制字符串函数