postgresql
Funciones criptográficas de Postgres.
Buscar..
Introducción
En Postgres, las funciones criptográficas se pueden desbloquear utilizando el módulo pgcrypto. CREAR EXTENSIÓN pgcrypto;
digerir
DIGEST()
funciones DIGEST()
generan un hash binario de los datos dados. Esto se puede utilizar para crear un hash aleatorio.
Uso: digest(data text, type text) returns bytea
O: digest(data bytea, type text) returns bytea
Ejemplos:
SELECT DIGEST('1', 'sha1')
SELECT DIGEST(CONCAT(CAST(current_timestamp AS TEXT), RANDOM()::TEXT), 'sha1')
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow