| 38 |
char *key_fingerprint(Key *key, enum fp_rep dgst_rep); |
char *key_fingerprint(Key *key, enum fp_rep dgst_rep); |
| 39 |
|
|
| 40 |
const char *key_type(const Key *k); |
const char *key_type(const Key *k); |
|
char *get_sshname_from_keytype(enum ssh_keytype type); |
|
| 41 |
char *get_sshname_from_key(Key *key); |
char *get_sshname_from_key(Key *key); |
| 42 |
enum hostkey_type get_keytype_from_name(char *name); |
enum hostkey_type get_keytype_from_name(char *name); |
| 43 |
char *curve_keytype_to_name(enum ssh_keytype type); |
char *curve_keytype_to_name(ssh_keytype type); |
| 44 |
|
|
| 45 |
void key_free(Key *key); |
void key_free(Key *key); |
| 46 |
int key_to_blob(Key *key, char **blobp, int *lenp); |
int key_to_blob(Key *key, char **blobp, int *lenp); |
| 48 |
BOOL get_SSH2_publickey_blob(PTInstVar pvar, buffer_t **blobptr, int *bloblen); |
BOOL get_SSH2_publickey_blob(PTInstVar pvar, buffer_t **blobptr, int *bloblen); |
| 49 |
BOOL generate_SSH2_keysign(Key *keypair, char **sigptr, int *siglen, char *data, int datalen); |
BOOL generate_SSH2_keysign(Key *keypair, char **sigptr, int *siglen, char *data, int datalen); |
| 50 |
|
|
| 51 |
int kextype_to_cipher_nid(enum kex_algorithm type); |
int kextype_to_cipher_nid(kex_algorithm type); |
| 52 |
int keytype_to_hash_nid(enum ssh_keytype type); |
int keytype_to_hash_nid(ssh_keytype type); |
| 53 |
int keytype_to_cipher_nid(enum ssh_keytype type); |
int keytype_to_cipher_nid(ssh_keytype type); |
| 54 |
enum ssh_keytype nid_to_keytype(int nid); |
ssh_keytype nid_to_keytype(int nid); |