| 1 |
/* |
| 2 |
* (C) 2021- TeraTerm Project |
| 3 |
* All rights reserved. |
| 4 |
* |
| 5 |
* Redistribution and use in source and binary forms, with or without |
| 6 |
* modification, are permitted provided that the following conditions |
| 7 |
* are met: |
| 8 |
* |
| 9 |
* 1. Redistributions of source code must retain the above copyright |
| 10 |
* notice, this list of conditions and the following disclaimer. |
| 11 |
* 2. Redistributions in binary form must reproduce the above copyright |
| 12 |
* notice, this list of conditions and the following disclaimer in the |
| 13 |
* documentation and/or other materials provided with the distribution. |
| 14 |
* 3. The name of the author may not be used to endorse or promote products |
| 15 |
* derived from this software without specific prior written permission. |
| 16 |
* |
| 17 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR |
| 18 |
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 19 |
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 20 |
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 21 |
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 22 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 |
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 |
*/ |
| 28 |
|
| 29 |
#ifndef __KEYFILES_PUTTY_H |
| 30 |
#define __KEYFILES_PUTTY_H |
| 31 |
|
| 32 |
#include "argon2.h" |
| 33 |
|
| 34 |
typedef struct ppk_argon2_parameters { |
| 35 |
argon2_type type; |
| 36 |
uint32_t argon2_mem; |
| 37 |
uint32_t argon2_passes; |
| 38 |
uint32_t argon2_parallelism; |
| 39 |
const uint8_t *salt; |
| 40 |
size_t saltlen; |
| 41 |
} ppk_argon2_parameters; |
| 42 |
|
| 43 |
BOOL str_to_uint32_t(const char *s, uint32_t *out); |
| 44 |
BOOL ppk_read_header(FILE * fp, char *header); |
| 45 |
char *ppk_read_body(FILE * fp); |
| 46 |
BOOL ppk_read_blob(FILE* fp, int nlines, buffer_t *blob); |
| 47 |
|
| 48 |
void hmac_sha1_simple(unsigned char *key, int keylen, void *data, int datalen, |
| 49 |
unsigned char *output); |
| 50 |
void hmac_sha256_simple(unsigned char *key, int keylen, void *data, int datalen, |
| 51 |
unsigned char *output); |
| 52 |
void mac_simple(const EVP_MD *md, |
| 53 |
unsigned char *key, int keylen, void *data, int datalen, |
| 54 |
unsigned char *output); |
| 55 |
|
| 56 |
void ssh2_ppk_derive_keys( |
| 57 |
unsigned fmt_version, const struct ssh2cipher* ciphertype, |
| 58 |
unsigned char *passphrase, buffer_t *storage, |
| 59 |
unsigned char **cipherkey, unsigned int *cipherkey_len, |
| 60 |
unsigned char **cipheriv, unsigned int *cipheriv_len, |
| 61 |
unsigned char **mackey, unsigned int *mackey_len, |
| 62 |
ppk_argon2_parameters *params); |
| 63 |
|
| 64 |
#endif /* __KEYFILES_PUTTY_H */ |