Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r8a64320e  
    459459 *
    460460 */
    461 errno_t aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output)
     461int aes_encrypt(uint8_t *key, uint8_t *input, uint8_t *output)
    462462{
    463463        if ((!key) || (!input))
     
    511511 *
    512512 */
    513 errno_t aes_decrypt(uint8_t *key, uint8_t *input, uint8_t *output)
     513int 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.