Changeset 5a6cc679 in mainline for uspace/lib/crypto/aes.c
- Timestamp:
- 2018-01-31T02:21:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
-
uspace/lib/crypto/aes.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/crypto/aes.c
r132ab5d1 r5a6cc679 459 459 * 460 460 */ 461 int aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output)461 errno_t aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output) 462 462 { 463 463 if ((!key) || (!input)) … … 511 511 * 512 512 */ 513 int aes_decrypt(uint8_t *key, uint8_t *input, uint8_t *output)513 errno_t 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.
