mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-09 18:04:25 +09:00
torture: Add torture_pki_publickey_rsa_base64 test.
This commit is contained in:
@@ -278,6 +278,38 @@ static void torture_pki_pki_publickey_from_privatekey_DSA(void **state) {
|
|||||||
ssh_key_free(pubkey);
|
ssh_key_free(pubkey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void torture_pki_publickey_rsa_base64(void **state)
|
||||||
|
{
|
||||||
|
ssh_session session = *state;
|
||||||
|
enum ssh_keytypes_e type;
|
||||||
|
char *key_buf, *p;
|
||||||
|
const char *q;
|
||||||
|
unsigned char *b64_key;
|
||||||
|
ssh_key key;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
key_buf = read_file(LIBSSH_RSA_TESTKEY ".pub");
|
||||||
|
assert_true(key_buf != NULL);
|
||||||
|
|
||||||
|
q = p = key_buf;
|
||||||
|
while (*p != ' ') p++;
|
||||||
|
*p = '\0';
|
||||||
|
|
||||||
|
type = ssh_key_type_from_name(q);
|
||||||
|
assert_true(((type == SSH_KEYTYPE_RSA) ||
|
||||||
|
(type == SSH_KEYTYPE_RSA1)));
|
||||||
|
|
||||||
|
q = ++p;
|
||||||
|
while (*p != ' ') p++;
|
||||||
|
*p = '\0';
|
||||||
|
|
||||||
|
rc = ssh_pki_import_pubkey_base64(session, q, type, &key);
|
||||||
|
assert_true(rc == 0);
|
||||||
|
|
||||||
|
free(key_buf);
|
||||||
|
ssh_key_free(key);
|
||||||
|
}
|
||||||
|
|
||||||
int torture_run_tests(void) {
|
int torture_run_tests(void) {
|
||||||
int rc;
|
int rc;
|
||||||
const UnitTest tests[] = {
|
const UnitTest tests[] = {
|
||||||
@@ -307,6 +339,10 @@ int torture_run_tests(void) {
|
|||||||
unit_test_setup_teardown(torture_pki_pki_publickey_from_privatekey_DSA,
|
unit_test_setup_teardown(torture_pki_pki_publickey_from_privatekey_DSA,
|
||||||
setup_dsa_key,
|
setup_dsa_key,
|
||||||
teardown),
|
teardown),
|
||||||
|
/* public key */
|
||||||
|
unit_test_setup_teardown(torture_pki_publickey_rsa_base64,
|
||||||
|
setup_rsa_key,
|
||||||
|
teardown),
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user