Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
1bd0b340
Commit
1bd0b340
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
No, file not needed.
parent
9a78cfc1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contrib/pgcrypto/pgcrypto.sql
+0
-65
0 additions, 65 deletions
contrib/pgcrypto/pgcrypto.sql
with
0 additions
and
65 deletions
contrib/pgcrypto/pgcrypto.sql
deleted
100644 → 0
+
0
−
65
View file @
9a78cfc1
-- drop function digest(bytea, text);
-- drop function digest_exists(text);
-- drop function hmac(bytea, bytea, text);
-- drop function hmac_exists(text);
-- drop function crypt(text, text);
-- drop function gen_salt(text);
-- drop function gen_salt(text, int4);
-- drop function encrypt(bytea, bytea, text);
-- drop function decrypt(bytea, bytea, text);
-- drop function encrypt_iv(bytea, bytea, bytea, text);
-- drop function decrypt_iv(bytea, bytea, bytea, text);
-- drop function cipher_exists(text);
CREATE
FUNCTION
digest
(
bytea
,
text
)
RETURNS
bytea
AS
'$libdir/pgcrypto'
,
'pg_digest'
LANGUAGE
'C'
;
CREATE
FUNCTION
digest_exists
(
text
)
RETURNS
bool
AS
'$libdir/pgcrypto'
,
'pg_digest_exists'
LANGUAGE
'C'
;
CREATE
FUNCTION
hmac
(
bytea
,
bytea
,
text
)
RETURNS
bytea
AS
'$libdir/pgcrypto'
,
'pg_hmac'
LANGUAGE
'C'
;
CREATE
FUNCTION
hmac_exists
(
text
)
RETURNS
bool
AS
'$libdir/pgcrypto'
,
'pg_hmac_exists'
LANGUAGE
'C'
;
CREATE
FUNCTION
crypt
(
text
,
text
)
RETURNS
text
AS
'$libdir/pgcrypto'
,
'pg_crypt'
LANGUAGE
'C'
;
CREATE
FUNCTION
gen_salt
(
text
)
RETURNS
text
AS
'$libdir/pgcrypto'
,
'pg_gen_salt'
LANGUAGE
'C'
;
CREATE
FUNCTION
gen_salt
(
text
,
int4
)
RETURNS
text
AS
'$libdir/pgcrypto'
,
'pg_gen_salt_rounds'
LANGUAGE
'C'
;
CREATE
FUNCTION
encrypt
(
bytea
,
bytea
,
text
)
RETURNS
bytea
AS
'$libdir/pgcrypto'
,
'pg_encrypt'
LANGUAGE
'C'
;
CREATE
FUNCTION
decrypt
(
bytea
,
bytea
,
text
)
RETURNS
bytea
AS
'$libdir/pgcrypto'
,
'pg_decrypt'
LANGUAGE
'C'
;
CREATE
FUNCTION
encrypt_iv
(
bytea
,
bytea
,
bytea
,
text
)
RETURNS
bytea
AS
'$libdir/pgcrypto'
,
'pg_encrypt_iv'
LANGUAGE
'C'
;
CREATE
FUNCTION
decrypt_iv
(
bytea
,
bytea
,
bytea
,
text
)
RETURNS
bytea
AS
'$libdir/pgcrypto'
,
'pg_decrypt_iv'
LANGUAGE
'C'
;
CREATE
FUNCTION
cipher_exists
(
text
)
RETURNS
bool
AS
'$libdir/pgcrypto'
,
'pg_cipher_exists'
LANGUAGE
'C'
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment