PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

bug de senha UTF node-postgres


Encontrou um bug em /lib/client.js :crypto.createHash('md5').update('утфUTF').digest('hex') dá:

enquanto o md5 certo seria:
a=#select md5('утфutf');
               md5
----------------------------------
 6dbfa2a80226f7629e537268b0650898
(1 row)

Então crypto.createHash('md5').update('утфutf', 'utf-8').digest('hex')

Seguindo aquilo

Corrigido meu problema de senha utf. Então eu criei PR - talvez em breve não seja mais uma pergunta.

https://github.com/brianc/node-postgres/pull/1178