PostgreSQL Source Code git master
|
Data Fields | |
scram_state_enum | state |
const char * | username |
Port * | port |
bool | channel_binding_in_use |
pg_cryptohash_type | hash_type |
int | key_length |
int | iterations |
char * | salt |
uint8 | ClientKey [SCRAM_MAX_KEY_LEN] |
uint8 | StoredKey [SCRAM_MAX_KEY_LEN] |
uint8 | ServerKey [SCRAM_MAX_KEY_LEN] |
char | cbind_flag |
char * | client_first_message_bare |
char * | client_username |
char * | client_nonce |
char * | client_final_message_without_proof |
char * | client_final_nonce |
char | ClientProof [SCRAM_MAX_KEY_LEN] |
char * | server_first_message |
char * | server_nonce |
bool | doomed |
char * | logdetail |
Definition at line 133 of file auth-scram.c.
char scram_state::cbind_flag |
Definition at line 153 of file auth-scram.c.
bool scram_state::channel_binding_in_use |
Definition at line 140 of file auth-scram.c.
char* scram_state::client_final_message_without_proof |
Definition at line 159 of file auth-scram.c.
char* scram_state::client_final_nonce |
Definition at line 160 of file auth-scram.c.
char* scram_state::client_first_message_bare |
Definition at line 154 of file auth-scram.c.
char* scram_state::client_nonce |
Definition at line 156 of file auth-scram.c.
char* scram_state::client_username |
Definition at line 155 of file auth-scram.c.
uint8 scram_state::ClientKey[SCRAM_MAX_KEY_LEN] |
Definition at line 148 of file auth-scram.c.
char scram_state::ClientProof[SCRAM_MAX_KEY_LEN] |
Definition at line 161 of file auth-scram.c.
bool scram_state::doomed |
Definition at line 173 of file auth-scram.c.
pg_cryptohash_type scram_state::hash_type |
Definition at line 143 of file auth-scram.c.
int scram_state::iterations |
Definition at line 146 of file auth-scram.c.
int scram_state::key_length |
Definition at line 144 of file auth-scram.c.
char* scram_state::logdetail |
Definition at line 174 of file auth-scram.c.
Port* scram_state::port |
Definition at line 139 of file auth-scram.c.
char* scram_state::salt |
Definition at line 147 of file auth-scram.c.
char* scram_state::server_first_message |
Definition at line 164 of file auth-scram.c.
char* scram_state::server_nonce |
Definition at line 165 of file auth-scram.c.
uint8 scram_state::ServerKey[SCRAM_MAX_KEY_LEN] |
Definition at line 150 of file auth-scram.c.
scram_state_enum scram_state::state |
Definition at line 135 of file auth-scram.c.
uint8 scram_state::StoredKey[SCRAM_MAX_KEY_LEN] |
Definition at line 149 of file auth-scram.c.
const char* scram_state::username |
Definition at line 137 of file auth-scram.c.