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
38a4c351
Commit
38a4c351
authored
Aug 22, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Persuade new pgcrypto stuff to compile.
parent
ef80c87f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
18 deletions
+18
-18
contrib/pgcrypto/blf.h
contrib/pgcrypto/blf.h
+14
-14
contrib/pgcrypto/rijndael.c
contrib/pgcrypto/rijndael.c
+1
-1
contrib/pgcrypto/rijndael.h
contrib/pgcrypto/rijndael.h
+3
-3
No files found.
contrib/pgcrypto/blf.h
View file @
38a4c351
...
...
@@ -57,26 +57,26 @@ typedef struct BlowfishContext {
* Blowfish_expand0state( state, key, keylen )
*/
void
Blowfish_encipher
__P
((
blf_ctx
*
,
uint32
*
)
);
void
Blowfish_decipher
__P
((
blf_ctx
*
,
uint32
*
)
);
void
Blowfish_initstate
__P
((
blf_ctx
*
)
);
void
Blowfish_expand0state
__P
((
blf_ctx
*
,
const
uint8
*
,
uint16
)
);
void
Blowfish_encipher
(
blf_ctx
*
,
uint32
*
);
void
Blowfish_decipher
(
blf_ctx
*
,
uint32
*
);
void
Blowfish_initstate
(
blf_ctx
*
);
void
Blowfish_expand0state
(
blf_ctx
*
,
const
uint8
*
,
uint16
);
void
Blowfish_expandstate
__P
((
blf_ctx
*
,
const
uint8
*
,
uint16
,
const
uint8
*
,
uint16
)
);
(
blf_ctx
*
,
const
uint8
*
,
uint16
,
const
uint8
*
,
uint16
);
/* Standard Blowfish */
void
blf_key
__P
((
blf_ctx
*
,
const
uint8
*
,
uint16
)
);
void
blf_enc
__P
((
blf_ctx
*
,
uint32
*
,
uint16
)
);
void
blf_dec
__P
((
blf_ctx
*
,
uint32
*
,
uint16
)
);
void
blf_key
(
blf_ctx
*
,
const
uint8
*
,
uint16
);
void
blf_enc
(
blf_ctx
*
,
uint32
*
,
uint16
);
void
blf_dec
(
blf_ctx
*
,
uint32
*
,
uint16
);
/* Converts uint8 to uint32 */
uint32
Blowfish_stream2word
__P
((
const
uint8
*
,
uint16
,
uint16
*
));
uint32
Blowfish_stream2word
(
const
uint8
*
,
uint16
,
uint16
*
);
void
blf_ecb_encrypt
__P
((
blf_ctx
*
,
uint8
*
,
uint32
));
void
blf_ecb_decrypt
__P
((
blf_ctx
*
,
uint8
*
,
uint32
));
void
blf_ecb_encrypt
(
blf_ctx
*
,
uint8
*
,
uint32
);
void
blf_ecb_decrypt
(
blf_ctx
*
,
uint8
*
,
uint32
);
void
blf_cbc_encrypt
(
blf_ctx
*
,
uint8
*
,
uint8
*
,
uint32
);
void
blf_cbc_decrypt
(
blf_ctx
*
,
uint8
*
,
uint8
*
,
uint32
);
void
blf_cbc_encrypt
__P
((
blf_ctx
*
,
uint8
*
,
uint8
*
,
uint32
));
void
blf_cbc_decrypt
__P
((
blf_ctx
*
,
uint8
*
,
uint8
*
,
uint32
));
#endif
contrib/pgcrypto/rijndael.c
View file @
38a4c351
...
...
@@ -45,7 +45,7 @@ Mean: 500 cycles = 51.2 mbits/sec
#define PRE_CALC_TABLES
#define LARGE_TABLES
static
void
gen_tabs
__P
((
void
)
);
static
void
gen_tabs
(
void
);
/* 3. Basic macros for speeding up generic operations */
...
...
contrib/pgcrypto/rijndael.h
View file @
38a4c351
...
...
@@ -41,9 +41,9 @@ typedef struct _rijndael_ctx {
/* require endian conversions for big-endian architectures */
rijndael_ctx
*
rijndael_set_key
__P
((
rijndael_ctx
*
,
const
u4byte
*
,
const
u4byte
,
int
)
);
void
rijndael_encrypt
__P
((
rijndael_ctx
*
,
const
u4byte
*
,
u4byte
*
)
);
void
rijndael_decrypt
__P
((
rijndael_ctx
*
,
const
u4byte
*
,
u4byte
*
)
);
rijndael_set_key
(
rijndael_ctx
*
,
const
u4byte
*
,
const
u4byte
,
int
);
void
rijndael_encrypt
(
rijndael_ctx
*
,
const
u4byte
*
,
u4byte
*
);
void
rijndael_decrypt
(
rijndael_ctx
*
,
const
u4byte
*
,
u4byte
*
);
/* conventional interface */
...
...
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