| 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 CRYPTO_H__ |
| 33 |
#define CRYPTO_H__ |
| 34 |
|
| 35 |
#include <slog.h> |
| 36 |
|
| 37 |
#include <openssl/opensslv.h> |
| 38 |
#include <openssl/hmac.h> |
| 39 |
#include <openssl/evp.h> |
| 40 |
|
| 41 |
// openssl 0.9.8/1.0.0 compatibility |
| 42 |
#if OPENSSL_VERSION_NUMBER < 0x10001000 |
| 43 |
#define require101(exp) exp |
| 44 |
#else |
| 45 |
#define require101(exp) require (exp) |
| 46 |
#endif |
| 47 |
|
| 48 |
/* this pretty much wraps the slightly weird openssl api */ |
| 49 |
class hmac |
| 50 |
{ |
| 51 |
HMAC_CTX *ctx; |
| 52 |
|
| 53 |
public: |
| 54 |
|
| 55 |
hmac (); |
| 56 |
~hmac (); |
| 57 |
|
| 58 |
void init (const void *key, int key_len, const EVP_MD *hash = 0) |
| 59 |
{ |
| 60 |
require101 (HMAC_Init_ex (ctx, key, key_len, hash, 0)); |
| 61 |
} |
| 62 |
|
| 63 |
void init () |
| 64 |
{ |
| 65 |
require101 (HMAC_Init_ex (ctx, 0, 0, 0, 0)); |
| 66 |
} |
| 67 |
|
| 68 |
void |
| 69 |
add (const void *data, int len) |
| 70 |
{ |
| 71 |
require101 (HMAC_Update (ctx, (const unsigned char *)data, len)); |
| 72 |
} |
| 73 |
|
| 74 |
void |
| 75 |
digest (void *dgst) |
| 76 |
{ |
| 77 |
require101 (HMAC_Final (ctx, (unsigned char *)dgst, 0)); |
| 78 |
} |
| 79 |
|
| 80 |
int |
| 81 |
size () |
| 82 |
{ |
| 83 |
return HMAC_size (ctx); |
| 84 |
} |
| 85 |
}; |
| 86 |
|
| 87 |
/* cheap alloc/free wrapper only atm. */ |
| 88 |
class cipher |
| 89 |
{ |
| 90 |
EVP_CIPHER_CTX *ctx; |
| 91 |
|
| 92 |
public: |
| 93 |
|
| 94 |
cipher (); |
| 95 |
~cipher (); |
| 96 |
|
| 97 |
operator EVP_CIPHER_CTX *() |
| 98 |
{ |
| 99 |
return ctx; |
| 100 |
} |
| 101 |
}; |
| 102 |
|
| 103 |
#endif |
| 104 |
|