certificate_t->issued_by takes an argument to receive signature scheme
This commit is contained in:
@@ -348,7 +348,7 @@ METHOD(stroke_ca_t, check_for_hash_and_url, void,
|
||||
enumerator = this->sections->create_enumerator(this->sections);
|
||||
while (enumerator->enumerate(enumerator, (void**)§ion))
|
||||
{
|
||||
if (section->certuribase && cert->issued_by(cert, section->cert))
|
||||
if (section->certuribase && cert->issued_by(cert, section->cert, NULL))
|
||||
{
|
||||
chunk_t hash, encoded;
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ bool test_cert_x509()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
if (!parsed->issued_by(parsed, ca_cert))
|
||||
if (!parsed->issued_by(parsed, ca_cert, NULL))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
@@ -90,7 +90,7 @@ bool test_cert_x509()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
if (!parsed->issued_by(parsed, ca_cert))
|
||||
if (!parsed->issued_by(parsed, ca_cert, NULL))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user