| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #ifndef SCRAM_COMMON_H |
| | #define SCRAM_COMMON_H |
| |
|
| | #include "common/cryptohash.h" |
| | #include "common/sha2.h" |
| |
|
| | |
| | #define SCRAM_SHA_256_NAME "SCRAM-SHA-256" |
| | #define SCRAM_SHA_256_PLUS_NAME "SCRAM-SHA-256-PLUS" |
| |
|
| | |
| | #define SCRAM_SHA_256_KEY_LEN PG_SHA256_DIGEST_LENGTH |
| |
|
| | |
| | |
| | |
| | |
| | #define SCRAM_MAX_KEY_LEN SCRAM_SHA_256_KEY_LEN |
| |
|
| | |
| | |
| | |
| | |
| | |
| | #define SCRAM_RAW_NONCE_LEN 18 |
| |
|
| | |
| | |
| | |
| | |
| | |
| | #define SCRAM_DEFAULT_SALT_LEN 16 |
| |
|
| | |
| | |
| | |
| | |
| | #define SCRAM_SHA_256_DEFAULT_ITERATIONS 4096 |
| |
|
| | extern int scram_SaltedPassword(const char *password, |
| | pg_cryptohash_type hash_type, int key_length, |
| | const char *salt, int saltlen, int iterations, |
| | uint8 *result, const char **errstr); |
| | extern int scram_H(const uint8 *input, pg_cryptohash_type hash_type, |
| | int key_length, uint8 *result, |
| | const char **errstr); |
| | extern int scram_ClientKey(const uint8 *salted_password, |
| | pg_cryptohash_type hash_type, int key_length, |
| | uint8 *result, const char **errstr); |
| | extern int scram_ServerKey(const uint8 *salted_password, |
| | pg_cryptohash_type hash_type, int key_length, |
| | uint8 *result, const char **errstr); |
| |
|
| | extern char *scram_build_secret(pg_cryptohash_type hash_type, int key_length, |
| | const char *salt, int saltlen, int iterations, |
| | const char *password, const char **errstr); |
| |
|
| | #endif |
| |
|