Skip to content

Commit

Permalink
crmf_lib.c: clean up coments on OSSL_CRMF_CERTTEMPLATE*()
Browse files Browse the repository at this point in the history
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
(Merged from #20736)
  • Loading branch information
DDvO committed Apr 18, 2023
1 parent 09f30b0 commit 8b6bbca
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions crypto/crmf/crmf_lib.c
Expand Up @@ -547,7 +547,6 @@ X509_PUBKEY
return tmpl != NULL ? tmpl->publicKey : NULL;
}

/* retrieves the serialNumber of the given cert template or NULL on error */
const ASN1_INTEGER
*OSSL_CRMF_CERTTEMPLATE_get0_serialNumber(const OSSL_CRMF_CERTTEMPLATE *tmpl)
{
Expand All @@ -560,7 +559,6 @@ const X509_NAME
return tmpl != NULL ? tmpl->subject : NULL;
}

/* retrieves the issuer name of the given cert template or NULL on error */
const X509_NAME
*OSSL_CRMF_CERTTEMPLATE_get0_issuer(const OSSL_CRMF_CERTTEMPLATE *tmpl)
{
Expand All @@ -573,23 +571,21 @@ X509_EXTENSIONS
return tmpl != NULL ? tmpl->extensions : NULL;
}

/* retrieves the issuer name of the given CertId or NULL on error */
const X509_NAME *OSSL_CRMF_CERTID_get0_issuer(const OSSL_CRMF_CERTID *cid)
{
return cid != NULL && cid->issuer->type == GEN_DIRNAME ?
cid->issuer->d.directoryName : NULL;
}

/* retrieves the serialNumber of the given CertId or NULL on error */
const ASN1_INTEGER *OSSL_CRMF_CERTID_get0_serialNumber(const OSSL_CRMF_CERTID
*cid)
{
return cid != NULL ? cid->serialNumber : NULL;
}

/*-
* fill in certificate template.
* Any value argument that is NULL will leave the respective field unchanged.
* Fill in the certificate template |tmpl|.
* Any other NULL argument will leave the respective field unchanged.
*/
int OSSL_CRMF_CERTTEMPLATE_fill(OSSL_CRMF_CERTTEMPLATE *tmpl,
EVP_PKEY *pubkey,
Expand Down

0 comments on commit 8b6bbca

Please sign in to comment.