support PEM-encoded certificates stored in SQL databases

This commit is contained in:
Andreas Steffen
2010-11-26 13:47:37 +01:00
committed by Andreas Steffen
parent 3fe656fdc9
commit 6b7897728a
+2 -2
View File
@@ -62,7 +62,7 @@ static bool private_enumerator_enumerate(private_enumerator_t *this,
while (this->inner->enumerate(this->inner, &type, &blob))
{
this->current = lib->creds->create(lib->creds, CRED_PRIVATE_KEY, type,
BUILD_BLOB_ASN1_DER, blob,
BUILD_BLOB_PEM, blob,
BUILD_END);
if (this->current)
{
@@ -148,7 +148,7 @@ static bool cert_enumerator_enumerate(cert_enumerator_t *this,
while (this->inner->enumerate(this->inner, &type, &blob))
{
this->current = lib->creds->create(lib->creds, CRED_CERTIFICATE, type,
BUILD_BLOB_ASN1_DER, blob,
BUILD_BLOB_PEM, blob,
BUILD_END);
if (this->current)
{