]> git.zerfleddert.de Git - proxmark3-svn/blob - common/polarssl/libpcrypto.h
Mfp commands (#698)
[proxmark3-svn] / common / polarssl / libpcrypto.h
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);
19
20 #endif /* libpcrypto.h */
Impressum, Datenschutz