Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/crypto/aes.c

    r8a64320e rb7fd2a0  
    459459 *
    460460 */
    461 int aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output)
     461errno_t aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output)
    462462{
    463463        if ((!key) || (!input))
     
    511511 *
    512512 */
    513 int aes_decrypt(uint8_t *key, uint8_t *input, uint8_t *output)
     513errno_t aes_decrypt(uint8_t *key, uint8_t *input, uint8_t *output)
    514514{
    515515        if ((!key) || (!input))
Note: See TracChangeset for help on using the changeset viewer.