/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
contrib/pgcrypto/sql/des.sql
24 строки
696 B
Peter Eisentraut
pgcrypto: Remove explicit hex encoding/decoding from tests
08 дек 2021, 08:06
08 дек 2021, 08:06
814e1d9
Код
Авторство
О чём код?
-- -- DES cipher -- -- no official test vectors atm -- from blowfish.sql SELECT encrypt('\x0123456789abcdef', '\xfedcba9876543210', 'des-ecb/pad:none'); -- empty data select encrypt('', 'foo', 'des'); -- 8 bytes key select encrypt('foo', '01234589', 'des'); -- decrypt select encode(decrypt(encrypt('foo', '0123456', 'des'), '0123456', 'des'), 'escape'); -- iv select encrypt_iv('foo', '0123456', 'abcd', 'des'); select encode(decrypt_iv('\x50735067b073bb93', '0123456', 'abcd', 'des'), 'escape'); -- long message select encrypt('Lets try a longer message.', '01234567', 'des'); select encode(decrypt(encrypt('Lets try a longer message.', '01234567', 'des'), '01234567', 'des'), 'escape');