libssh  0.8.0
pki_priv.h
1 /*
2  * This file is part of the SSH Library
3  *
4  * Copyright (c) 2010 by Aris Adamantiadis
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef PKI_PRIV_H_
22 #define PKI_PRIV_H_
23 
24 #include "libssh/pki.h"
25 
26 /* defined in bcrypt_pbkdf.c */
27 int bcrypt_pbkdf(const char *pass,
28  size_t passlen,
29  const uint8_t *salt,
30  size_t saltlen,
31  uint8_t *key,
32  size_t keylen,
33  unsigned int rounds);
34 
35 #define RSA_HEADER_BEGIN "-----BEGIN RSA PRIVATE KEY-----"
36 #define RSA_HEADER_END "-----END RSA PRIVATE KEY-----"
37 #define DSA_HEADER_BEGIN "-----BEGIN DSA PRIVATE KEY-----"
38 #define DSA_HEADER_END "-----END DSA PRIVATE KEY-----"
39 #define ECDSA_HEADER_BEGIN "-----BEGIN EC PRIVATE KEY-----"
40 #define ECDSA_HEADER_END "-----END EC PRIVATE KEY-----"
41 #define OPENSSH_HEADER_BEGIN "-----BEGIN OPENSSH PRIVATE KEY-----"
42 #define OPENSSH_HEADER_END "-----END OPENSSH PRIVATE KEY-----"
43 /* Magic defined in OpenSSH/PROTOCOL.key */
44 #define OPENSSH_AUTH_MAGIC "openssh-key-v1"
45 
46 int pki_key_ecdsa_nid_from_name(const char *name);
47 const char *pki_key_ecdsa_nid_to_name(int nid);
48 
49 /* SSH Key Functions */
50 ssh_key pki_key_dup(const ssh_key key, int demote);
51 int pki_key_generate_rsa(ssh_key key, int parameter);
52 int pki_key_generate_dss(ssh_key key, int parameter);
53 int pki_key_generate_ecdsa(ssh_key key, int parameter);
54 int pki_key_generate_ed25519(ssh_key key);
55 
56 int pki_key_compare(const ssh_key k1,
57  const ssh_key k2,
58  enum ssh_keycmp_e what);
59 
60 /* SSH Private Key Functions */
61 enum ssh_keytypes_e pki_privatekey_type_from_string(const char *privkey);
62 ssh_key pki_private_key_from_base64(const char *b64_key,
63  const char *passphrase,
64  ssh_auth_callback auth_fn,
65  void *auth_data);
66 
67 ssh_string pki_private_key_to_pem(const ssh_key key,
68  const char *passphrase,
69  ssh_auth_callback auth_fn,
70  void *auth_data);
71 
72 /* SSH Public Key Functions */
73 int pki_pubkey_build_dss(ssh_key key,
74  ssh_string p,
75  ssh_string q,
76  ssh_string g,
77  ssh_string pubkey);
78 int pki_pubkey_build_rsa(ssh_key key,
79  ssh_string e,
80  ssh_string n);
81 int pki_pubkey_build_ecdsa(ssh_key key, int nid, ssh_string e);
82 ssh_string pki_publickey_to_blob(const ssh_key key);
83 int pki_export_pubkey_rsa1(const ssh_key key,
84  const char *host,
85  char *rsa1,
86  size_t rsa1_len);
87 
88 /* SSH Signature Functions */
89 ssh_string pki_signature_to_blob(const ssh_signature sign);
90 ssh_signature pki_signature_from_blob(const ssh_key pubkey,
91  const ssh_string sig_blob,
92  enum ssh_keytypes_e type);
93 int pki_signature_verify(ssh_session session,
94  const ssh_signature sig,
95  const ssh_key key,
96  const unsigned char *hash,
97  size_t hlen);
98 
99 /* SSH Signing Functions */
100 ssh_signature pki_do_sign(const ssh_key privkey,
101  const unsigned char *hash,
102  size_t hlen);
103 ssh_signature pki_do_sign_sessionid(const ssh_key key,
104  const unsigned char *hash,
105  size_t hlen);
106 int pki_ed25519_sign(const ssh_key privkey, ssh_signature sig,
107  const unsigned char *hash, size_t hlen);
108 int pki_ed25519_verify(const ssh_key pubkey, ssh_signature sig,
109  const unsigned char *hash, size_t hlen);
110 int pki_ed25519_key_cmp(const ssh_key k1,
111  const ssh_key k2,
112  enum ssh_keycmp_e what);
113 int pki_ed25519_key_dup(ssh_key new, const ssh_key key);
114 int pki_ed25519_public_key_to_blob(ssh_buffer buffer, ssh_key key);
115 ssh_string pki_ed25519_sig_to_blob(ssh_signature sig);
116 int pki_ed25519_sig_from_blob(ssh_signature sig, ssh_string sig_blob);
117 
118 /* PKI Container OpenSSH */
119 ssh_key ssh_pki_openssh_privkey_import(const char *text_key,
120  const char *passphrase, ssh_auth_callback auth_fn, void *auth_data);
121 ssh_string ssh_pki_openssh_privkey_export(const ssh_key privkey,
122  const char *passphrase, ssh_auth_callback auth_fn, void *auth_data);
123 
124 #endif /* PKI_PRIV_H_ */