Recherche…


Introduction

Dans Postgres, les fonctions cryptographiques peuvent être déverrouillées à l'aide du module pgcrypto. CREATE EXTENSION pgcrypto;

digérer

DIGEST() génèrent un hachage binaire des données données. Cela peut être utilisé pour créer un hachage aléatoire.

Utilisation: digest(data text, type text) returns bytea

Ou: digest(data bytea, type text) returns bytea

Exemples:

  • 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow