Changeset 46577995 in mainline for uspace/lib/crypto/aes.c
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
-
uspace/lib/crypto/aes.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/crypto/aes.c
rfacacc71 r46577995 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.
