]>
Commit | Line | Data |
---|---|---|
ae3340a0 OM |
1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2018 Merlok | |
3 | // | |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // crypto commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #ifndef LIBPCRYPTO_H | |
12 | #define LIBPCRYPTO_H | |
13 | ||
14 | #include <stdint.h> | |
15 | #include <stddef.h> | |
16 | ||
17 | extern int aes_encode(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *output, int length); | |
18 | extern int aes_decode(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *output, int length); | |
c8a0f550 OM |
19 | extern int aes_cmac(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *mac, int length); |
20 | extern int aes_cmac8(uint8_t *iv, uint8_t *key, uint8_t *input, uint8_t *mac, int length); | |
ae3340a0 OM |
21 | |
22 | #endif /* libpcrypto.h */ |