diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-03-09 05:18:03 +0100 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-03-18 08:52:38 +0100 |
commit | 4669015d7b0784d00812f6b015ca8080e37ff70b (patch) | |
tree | f49b993d32f962a4f86833cea889140aa625f2fb /crypto/x509/x509_set.c | |
parent | Add ossl_gost symbols (diff) | |
download | openssl-4669015d7b0784d00812f6b015ca8080e37ff70b.tar.xz openssl-4669015d7b0784d00812f6b015ca8080e37ff70b.zip |
Add ossl_ x509 symbols
Partial fix for #12964
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/x509/x509_set.c')
-rw-r--r-- | crypto/x509/x509_set.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/x509/x509_set.c b/crypto/x509/x509_set.c index 52b9792d8f..9dd822c223 100644 --- a/crypto/x509/x509_set.c +++ b/crypto/x509/x509_set.c @@ -61,7 +61,7 @@ int X509_set_subject_name(X509 *x, const X509_NAME *name) return X509_NAME_set(&x->cert_info.subject, name); } -int x509_set1_time(ASN1_TIME **ptm, const ASN1_TIME *tm) +int ossl_x509_set1_time(ASN1_TIME **ptm, const ASN1_TIME *tm) { ASN1_TIME *in; in = *ptm; @@ -79,14 +79,14 @@ int X509_set1_notBefore(X509 *x, const ASN1_TIME *tm) { if (x == NULL) return 0; - return x509_set1_time(&x->cert_info.validity.notBefore, tm); + return ossl_x509_set1_time(&x->cert_info.validity.notBefore, tm); } int X509_set1_notAfter(X509 *x, const ASN1_TIME *tm) { if (x == NULL) return 0; - return x509_set1_time(&x->cert_info.validity.notAfter, tm); + return ossl_x509_set1_time(&x->cert_info.validity.notAfter, tm); } int X509_set_pubkey(X509 *x, EVP_PKEY *pkey) @@ -270,7 +270,7 @@ static int x509_sig_info_init(X509_SIG_INFO *siginf, const X509_ALGOR *alg, } /* Returns 1 on success, 0 on failure */ -int x509_init_sig_info(X509 *x) +int ossl_x509_init_sig_info(X509 *x) { return x509_sig_info_init(&x->siginf, &x->sig_alg, &x->signature); } |