Add crypto encryption and decryption error messages.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12088 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
parent
d96d3fbf32
commit
93c2ed5ca1
|
@ -98,7 +98,9 @@ typedef enum {
|
|||
CRY_ERR_INV_ALGO = 1, /**< Invalid cypher/mode. */
|
||||
CRY_ERR_INV_KEY_SIZE = 2, /**< Invalid key size. */
|
||||
CRY_ERR_INV_KEY_TYPE = 3, /**< Invalid key type. */
|
||||
CRY_ERR_INV_KEY_ID = 4 /**< Invalid key identifier. */
|
||||
CRY_ERR_INV_KEY_ID = 4, /**< Invalid key identifier. */
|
||||
CRY_ERR_ENCRYP = 5, /**< Encryption error. */
|
||||
CRY_ERR_DECRYP = 6 /**< Decryption error. */
|
||||
} cryerror_t;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue