/*
- * Copyright (C) 2012 Reto Buerki
- * Copyright (C) 2012 Adrian-Ken Rueegsegger
+ * Copyright (C) 2012-2013 Reto Buerki
+ * Copyright (C) 2012-2013 Adrian-Ken Rueegsegger
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
*/
identification_t *id;
+ /**
+ * Key type.
+ */
+ key_type_t key_type;
+
/**
* Reference count.
*/
METHOD(private_key_t, get_type, key_type_t,
private_tkm_private_key_t *this)
{
- return KEY_RSA;
+ return this->key_type;
}
METHOD(private_key_t, sign, bool,
.id = id->clone(id),
);
+ /* get key type from associated public key */
+ certificate_t *cert;
+ cert = lib->credmgr->get_cert(lib->credmgr, CERT_ANY, KEY_ANY, id, FALSE);
+ if (!cert)
+ {
+ destroy(this);
+ return NULL;
+ }
+
+ public_key_t *pubkey = cert->get_public_key(cert);
+ if (!pubkey)
+ {
+ cert->destroy(cert);
+ destroy(this);
+ return NULL;
+ }
+ this->key_type = pubkey->get_type(pubkey);
+ pubkey->destroy(pubkey);
+ cert->destroy(cert);
+
return &this->public;
}
* for more details.
*/
+#include <utils/debug.h>
+
#include "tkm_public_key.h"
typedef struct private_tkm_public_key_t private_tkm_public_key_t;
*/
chunk_t asn_blob;
+ /**
+ * Key type.
+ */
+ key_type_t key_type;
+
/**
* Reference count.
*/
METHOD(public_key_t, get_type, key_type_t,
private_tkm_public_key_t *this)
{
- return KEY_RSA;
+ return this->key_type;
}
METHOD(public_key_t, verify, bool,
{
return TRUE;
}
- return lib->encoding->encode(lib->encoding, type, this, fp,
- CRED_PART_RSA_PUB_ASN1_DER, this->asn_blob,
- CRED_PART_END);
+ switch(this->key_type)
+ {
+ case KEY_RSA:
+ return lib->encoding->encode(lib->encoding, type, this, fp,
+ CRED_PART_RSA_PUB_ASN1_DER,
+ this->asn_blob, CRED_PART_END);
+ default:
+ DBG1(DBG_LIB, "%N public key not supported, fingerprinting failed",
+ key_type_names, this->key_type);
+ return FALSE;
+ }
}
METHOD(public_key_t, get_ref, public_key_t*,
},
.ref = 1,
.asn_blob = chunk_clone(blob),
+ .key_type = type,
);
return &this->public;
/*
- * Copyright (C) 2012 Reto Buerki
- * Copyright (C) 2012 Adrian-Ken Rueegsegger
+ * Copyright (C) 2012-2013 Reto Buerki
+ * Copyright (C) 2012-2013 Adrian-Ken Rueegsegger
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
/**
* Load a TKM public key.
*
- * Accepts BUILD_RSA_* components.
- *
- * @param type type of the key, must be KEY_RSA
+ * @param type type of the key
* @param args builder_part_t argument list
* @return loaded key, NULL on failure
*/