postgresql
Funzioni crittografiche di Postgres
Ricerca…
introduzione
In Postgres, le funzioni di crittografia possono essere sbloccate usando il modulo pgcrypto. CREATE EXTENSION pgcrypto;
digerire
DIGEST()
funzioni DIGEST()
generano un hash binario dei dati dati. Questo può essere usato per creare un hash casuale.
Utilizzo: digest(data text, type text) returns bytea
Oppure: digest(data bytea, type text) returns bytea
Esempi:
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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow