Zoeken…


Invoering

In Postgres kunnen cryptografische functies worden ontgrendeld met behulp van de pgcrypto-module. CREATE EXTENSION pgcrypto;

verteren

DIGEST() functies genereren een binaire hash van de gegeven gegevens. Dit kan worden gebruikt om een willekeurige hash te maken.

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

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

Voorbeelden:

  • 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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow