summaryrefslogtreecommitdiff
path: root/src/pki/pki.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pki/pki.c')
-rw-r--r--src/pki/pki.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/pki/pki.c b/src/pki/pki.c
index c3039a649..ecc0702cd 100644
--- a/src/pki/pki.c
+++ b/src/pki/pki.c
@@ -81,7 +81,18 @@ bool get_form(char *form, cred_encoding_type_t *enc, credential_type_t type)
switch (type)
{
case CRED_PUBLIC_KEY:
- *enc =PUBKEY_DNSKEY;
+ *enc = PUBKEY_DNSKEY;
+ return TRUE;
+ default:
+ return FALSE;
+ }
+ }
+ else if (streq(form, "sshkey"))
+ {
+ switch (type)
+ {
+ case CRED_PUBLIC_KEY:
+ *enc = PUBKEY_SSHKEY;
return TRUE;
default:
return FALSE;