We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c868c9 commit abe81eeCopy full SHA for abe81ee
contrib/pgcrypto/px.c
@@ -55,7 +55,6 @@ static const struct error_desc px_err_list[] = {
55
{PXE_ARGUMENT_ERROR, "Illegal argument to function"},
56
{PXE_UNKNOWN_SALT_ALGO, "Unknown salt algorithm"},
57
{PXE_BAD_SALT_ROUNDS, "Incorrect number of rounds"},
58
- {PXE_MCRYPT_INTERNAL, "mcrypt internal error"},
59
{PXE_NO_RANDOM, "Failed to generate strong random bits"},
60
{PXE_DECRYPT_FAILED, "Decryption failed"},
61
{PXE_ENCRYPT_FAILED, "Encryption failed"},
contrib/pgcrypto/px.h
@@ -58,7 +58,7 @@
#define PXE_ARGUMENT_ERROR -13
#define PXE_UNKNOWN_SALT_ALGO -14
#define PXE_BAD_SALT_ROUNDS -15
-#define PXE_MCRYPT_INTERNAL -16
+/* -16 is unused */
62
#define PXE_NO_RANDOM -17
63
#define PXE_DECRYPT_FAILED -18
64
#define PXE_ENCRYPT_FAILED -19
0 commit comments