Changes in uspace/lib/crypto/aes.c [b7fd2a0:8a64320e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/crypto/aes.c
rb7fd2a0 r8a64320e 459 459 * 460 460 */ 461 errno_t aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output)461 int aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output) 462 462 { 463 463 if ((!key) || (!input)) … … 511 511 * 512 512 */ 513 errno_t aes_decrypt(uint8_t *key, uint8_t *input, uint8_t *output)513 int aes_decrypt(uint8_t *key, uint8_t *input, uint8_t *output) 514 514 { 515 515 if ((!key) || (!input))
Note:
See TracChangeset
for help on using the changeset viewer.