Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
c83d1fb1
Commit
c83d1fb1
authored
Aug 04, 2009
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some more regression tests (missed these because they're only
run when built with --with-openssl).
parent
8476f055
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
0 deletions
+12
-0
contrib/pgcrypto/expected/3des.out
contrib/pgcrypto/expected/3des.out
+2
-0
contrib/pgcrypto/expected/cast5.out
contrib/pgcrypto/expected/cast5.out
+2
-0
contrib/pgcrypto/expected/des.out
contrib/pgcrypto/expected/des.out
+2
-0
contrib/pgcrypto/sql/3des.sql
contrib/pgcrypto/sql/3des.sql
+2
-0
contrib/pgcrypto/sql/cast5.sql
contrib/pgcrypto/sql/cast5.sql
+2
-0
contrib/pgcrypto/sql/des.sql
contrib/pgcrypto/sql/des.sql
+2
-0
No files found.
contrib/pgcrypto/expected/3des.out
View file @
c83d1fb1
--
-- 3DES cipher
--
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- test vector from somewhere
SELECT encode(encrypt(
decode('80 00 00 00 00 00 00 00', 'hex'),
...
...
contrib/pgcrypto/expected/cast5.out
View file @
c83d1fb1
--
-- Cast5 cipher
--
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- test vectors from RFC2144
-- 128 bit key
SELECT encode(encrypt(
...
...
contrib/pgcrypto/expected/des.out
View file @
c83d1fb1
--
-- DES cipher
--
-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;
-- no official test vectors atm
-- from blowfish.sql
SELECT encode(encrypt(
...
...
contrib/pgcrypto/sql/3des.sql
View file @
c83d1fb1
--
-- 3DES cipher
--
-- ensure consistent test output regardless of the default bytea format
SET
bytea_output
TO
escape
;
-- test vector from somewhere
SELECT
encode
(
encrypt
(
...
...
contrib/pgcrypto/sql/cast5.sql
View file @
c83d1fb1
--
-- Cast5 cipher
--
-- ensure consistent test output regardless of the default bytea format
SET
bytea_output
TO
escape
;
-- test vectors from RFC2144
...
...
contrib/pgcrypto/sql/des.sql
View file @
c83d1fb1
--
-- DES cipher
--
-- ensure consistent test output regardless of the default bytea format
SET
bytea_output
TO
escape
;
-- no official test vectors atm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment