| 1 |
root |
1.1 |
/* |
| 2 |
|
|
crypto.h -- openssl crypto wrappers |
| 3 |
|
|
Copyright (C) 2016 Marc Lehmann <gvpe@schmorp.de> |
| 4 |
|
|
|
| 5 |
|
|
This file is part of GVPE. |
| 6 |
|
|
|
| 7 |
|
|
GVPE is free software; you can redistribute it and/or modify it |
| 8 |
|
|
under the terms of the GNU General Public License as published by the |
| 9 |
|
|
Free Software Foundation; either version 3 of the License, or (at your |
| 10 |
|
|
option) any later version. |
| 11 |
|
|
|
| 12 |
|
|
This program is distributed in the hope that it will be useful, but |
| 13 |
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
| 15 |
|
|
Public License for more details. |
| 16 |
|
|
|
| 17 |
|
|
You should have received a copy of the GNU General Public License along |
| 18 |
|
|
with this program; if not, see <http://www.gnu.org/licenses/>. |
| 19 |
|
|
|
| 20 |
|
|
Additional permission under GNU GPL version 3 section 7 |
| 21 |
|
|
|
| 22 |
|
|
If you modify this Program, or any covered work, by linking or |
| 23 |
|
|
combining it with the OpenSSL project's OpenSSL library (or a modified |
| 24 |
|
|
version of that library), containing parts covered by the terms of the |
| 25 |
|
|
OpenSSL or SSLeay licenses, the licensors of this Program grant you |
| 26 |
|
|
additional permission to convey the resulting work. Corresponding |
| 27 |
|
|
Source for a non-source form of such a combination shall include the |
| 28 |
|
|
source code for the parts of OpenSSL used as well as that of the |
| 29 |
|
|
covered work. |
| 30 |
|
|
*/ |
| 31 |
|
|
|
| 32 |
|
|
#ifndef SSLCOMPAT_H |
| 33 |
|
|
#define SSLCOMPAT_H |
| 34 |
|
|
|
| 35 |
|
|
#include <slog.h> |
| 36 |
|
|
|
| 37 |
|
|
#include <openssl/opensslv.h> |
| 38 |
|
|
#include <openssl/hmac.h> |
| 39 |
|
|
|
| 40 |
|
|
// openssl 0.9.8/1.0.0 compatibility |
| 41 |
|
|
#if OPENSSL_VERSION_NUMBER < 0x10001000 |
| 42 |
|
|
#define require101(exp) exp |
| 43 |
|
|
#else |
| 44 |
|
|
#define require101(exp) require (exp) |
| 45 |
|
|
#endif |
| 46 |
|
|
|
| 47 |
|
|
/* this pretty much wraps the slightly weird openssl api */ |
| 48 |
|
|
struct hmac |
| 49 |
|
|
{ |
| 50 |
|
|
HMAC_CTX *ctx; |
| 51 |
|
|
|
| 52 |
|
|
hmac (); |
| 53 |
|
|
~hmac (); |
| 54 |
|
|
|
| 55 |
|
|
void init (const void *key = 0, int key_len = 0, const EVP_MD *hash = 0) |
| 56 |
|
|
{ |
| 57 |
|
|
require101 (HMAC_Init_ex (ctx, key, key_len, hash, 0)); |
| 58 |
|
|
} |
| 59 |
|
|
|
| 60 |
|
|
void |
| 61 |
|
|
add (const void *data, int len) |
| 62 |
|
|
{ |
| 63 |
|
|
require101 (HMAC_Update (ctx, (const unsigned char *)data, len)); |
| 64 |
|
|
} |
| 65 |
|
|
|
| 66 |
|
|
void |
| 67 |
|
|
digest (void *dgst) |
| 68 |
|
|
{ |
| 69 |
|
|
require101 (HMAC_Final (ctx, (unsigned char *)dgst, 0)); |
| 70 |
|
|
} |
| 71 |
|
|
|
| 72 |
|
|
int |
| 73 |
|
|
size () |
| 74 |
|
|
{ |
| 75 |
|
|
return HMAC_size (ctx); |
| 76 |
|
|
} |
| 77 |
|
|
}; |
| 78 |
|
|
|
| 79 |
|
|
#endif |
| 80 |
|
|
|