1511ea28 |
1 | /* roca.c - ROCA (CVE-2017-15361) fingerprint checker. |
2 | * Written by Rob Stradling (based on https://github.com/crocs-muni/roca/blob/master/roca/detect.py) |
3 | * Copyright (C) 2017-2018 Sectigo Limited |
4 | * modified 2018 iceman (dropped openssl bignum, now use mbedtls lib) |
5 | * modified 2018 merlok |
6 | * |
7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by |
9 | * the Free Software Foundation, either version 2 of the License, or |
10 | * (at your option) any later version. |
11 | * |
12 | * This program is distributed in the hope that it will be useful, |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | * GNU General Public License for more details. |
16 | * |
17 | * You should have received a copy of the GNU General Public License |
18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | */ |
20 | //----------------------------------------------------------------------------- |
21 | // EMV roca commands |
22 | //----------------------------------------------------------------------------- |
23 | |
24 | #ifndef EMV_ROCA_H__ |
25 | #define EMV_ROCA_H__ |
26 | |
27 | #include <stddef.h> |
28 | #include <stdbool.h> |
29 | |
30 | #define ROCA_PRINTS_LENGTH 17 |
31 | |
32 | extern bool emv_rocacheck( const unsigned char *buf, size_t buflen, bool verbose ); |
4cdd63b2 |
33 | extern int roca_self_test( void ); |
1511ea28 |
34 | |
35 | #endif |
36 | |