Module user_authentication

Source

Constantsยง

MD5_ENCRYPTED_PREFIX ๐Ÿ”’
OAUTH_ISSUER_KEY
OAUTH_JWKS_URL_KEY
SHA256_ENCRYPTED_PREFIX ๐Ÿ”’
VALID_MD5_ENCRYPTED_LEN ๐Ÿ”’
VALID_SHA256_ENCRYPTED_LEN ๐Ÿ”’

Functionsยง

build_oauth_info
Build AuthInfo for OAuth.
encrypt_default ๐Ÿ”’
Encrypt the password with MD5 as default.
encrypted_password
Try to extract the encryption password from given password. The password is always stored encrypted in the system catalogs. The ENCRYPTED keyword has no effect, but is accepted for backwards compatibility. The method of encryption is by default SHA-256-encrypted. If the presented password string is already in MD5-encrypted or SHA-256-encrypted format, then it is stored as-is regardless of password_encryption (since the system cannot decrypt the specified encrypted password string, to encrypt it in a different format).
encrypted_raw_password
Encrypted raw password from auth info.
md5_hash
Encrypt โ€œpassword+nameโ€ with MD5.
md5_hash_with_salt
Encrypt the stored password with given salt, used for user authentication.
sha256_hash
Encrypt โ€œpassword+nameโ€ with SHA-256.
valid_md5_password ๐Ÿ”’
valid_sha256_password ๐Ÿ”’