GME
13
|
APU ERROR VALUES APR_ENOKEY The key provided was empty or NULL APR_ENOIV The initialisation vector provided was NULL APR_EKEYTYPE The key type was not recognised APR_ENOSPACE The buffer supplied was not big enough APR_ECRYPT An error occurred while encrypting or decrypting APR_EPADDING Padding was not supported APR_EKEYLENGTH The key length was incorrect APR_ENOCIPHER The cipher provided was not recognised APR_ENODIGEST The digest provided was not recognised APR_ENOENGINE The engine provided was not recognised APR_EINITENGINE The engine could not be initialised APR_EREINIT Underlying crypto has already been initialised
APR STATUS VALUES APR_INCHILD Program is currently executing in the child
#define APR_ECRYPT (APR_UTIL_START_STATUS + 5) |
Definition at line 71 of file apu_errno.h.
#define APR_EINITENGINE (APR_UTIL_START_STATUS + 11) |
Definition at line 83 of file apu_errno.h.
#define APR_EKEYLENGTH (APR_UTIL_START_STATUS + 7) |
Definition at line 75 of file apu_errno.h.
#define APR_EKEYTYPE (APR_UTIL_START_STATUS + 3) |
Definition at line 67 of file apu_errno.h.
#define APR_ENOCIPHER (APR_UTIL_START_STATUS + 8) |
Definition at line 77 of file apu_errno.h.
#define APR_ENODIGEST (APR_UTIL_START_STATUS + 9) |
Definition at line 79 of file apu_errno.h.
#define APR_ENOENGINE (APR_UTIL_START_STATUS + 10) |
Definition at line 81 of file apu_errno.h.
#define APR_ENOIV (APR_UTIL_START_STATUS + 2) |
Definition at line 65 of file apu_errno.h.
#define APR_ENOKEY (APR_UTIL_START_STATUS + 1) |
Definition at line 63 of file apu_errno.h.
#define APR_ENOSPACE (APR_UTIL_START_STATUS + 4) |
Definition at line 69 of file apu_errno.h.
#define APR_EPADDING (APR_UTIL_START_STATUS + 6) |
Definition at line 73 of file apu_errno.h.
#define APR_EREINIT (APR_UTIL_START_STATUS + 12) |
Definition at line 85 of file apu_errno.h.
#define APR_STATUS_IS_ECRYPT | ( | s | ) | ((s) == APR_ECRYPT) |
An error occurred while encrypting or decrypting
Definition at line 125 of file apu_errno.h.
#define APR_STATUS_IS_EINITENGINE | ( | s | ) | ((s) == APR_EINITENGINE) |
The engine could not be initialised
Definition at line 149 of file apu_errno.h.
#define APR_STATUS_IS_EKEYLENGTH | ( | s | ) | ((s) == APR_EKEYLENGTH) |
An error occurred with the key length
Definition at line 133 of file apu_errno.h.
#define APR_STATUS_IS_EKEYTYPE | ( | s | ) | ((s) == APR_EKEYTYPE) |
The key type was not recognised
Definition at line 117 of file apu_errno.h.
#define APR_STATUS_IS_ENOCIPHER | ( | s | ) | ((s) == APR_ENOCIPHER) |
The cipher provided was not recognised
Definition at line 137 of file apu_errno.h.
#define APR_STATUS_IS_ENODIGEST | ( | s | ) | ((s) == APR_ENODIGEST) |
The digest provided was not recognised
Definition at line 141 of file apu_errno.h.
#define APR_STATUS_IS_ENOENGINE | ( | s | ) | ((s) == APR_ENOENGINE) |
The engine provided was not recognised
Definition at line 145 of file apu_errno.h.
#define APR_STATUS_IS_ENOIV | ( | s | ) | ((s) == APR_ENOIV) |
The initialisation vector was not provided
Definition at line 113 of file apu_errno.h.
#define APR_STATUS_IS_ENOKEY | ( | s | ) | ((s) == APR_ENOKEY) |
The key was empty or not provided
Definition at line 109 of file apu_errno.h.
#define APR_STATUS_IS_ENOSPACE | ( | s | ) | ((s) == APR_ENOSPACE) |
The buffer provided was not big enough
Definition at line 121 of file apu_errno.h.
#define APR_STATUS_IS_EPADDING | ( | s | ) | ((s) == APR_EPADDING) |
An error occurred while padding
Definition at line 129 of file apu_errno.h.
#define APR_STATUS_IS_EREINIT | ( | s | ) | ((s) == APR_EREINIT) |
Crypto has already been initialised
Definition at line 153 of file apu_errno.h.