提交 91b73acb 编写于 作者: N Nils Larsch

use const ASN1_TIME *

上级 87d3af64
...@@ -750,8 +750,8 @@ void X509_ALGOR_get0(ASN1_OBJECT **paobj, int *pptype, void **ppval, ...@@ -750,8 +750,8 @@ void X509_ALGOR_get0(ASN1_OBJECT **paobj, int *pptype, void **ppval,
X509_NAME *X509_NAME_dup(X509_NAME *xn); X509_NAME *X509_NAME_dup(X509_NAME *xn);
X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne); X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne);
int X509_cmp_time(ASN1_TIME *s, time_t *t); int X509_cmp_time(const ASN1_TIME *s, time_t *t);
int X509_cmp_current_time(ASN1_TIME *s); int X509_cmp_current_time(const ASN1_TIME *s);
ASN1_TIME * X509_time_adj(ASN1_TIME *s, long adj, time_t *t); ASN1_TIME * X509_time_adj(ASN1_TIME *s, long adj, time_t *t);
ASN1_TIME * X509_gmtime_adj(ASN1_TIME *s, long adj); ASN1_TIME * X509_gmtime_adj(ASN1_TIME *s, long adj);
...@@ -883,8 +883,8 @@ int X509_set_issuer_name(X509 *x, X509_NAME *name); ...@@ -883,8 +883,8 @@ int X509_set_issuer_name(X509 *x, X509_NAME *name);
X509_NAME * X509_get_issuer_name(X509 *a); X509_NAME * X509_get_issuer_name(X509 *a);
int X509_set_subject_name(X509 *x, X509_NAME *name); int X509_set_subject_name(X509 *x, X509_NAME *name);
X509_NAME * X509_get_subject_name(X509 *a); X509_NAME * X509_get_subject_name(X509 *a);
int X509_set_notBefore(X509 *x, ASN1_TIME *tm); int X509_set_notBefore(X509 *x, const ASN1_TIME *tm);
int X509_set_notAfter(X509 *x, ASN1_TIME *tm); int X509_set_notAfter(X509 *x, const ASN1_TIME *tm);
int X509_set_pubkey(X509 *x, EVP_PKEY *pkey); int X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
EVP_PKEY * X509_get_pubkey(X509 *x); EVP_PKEY * X509_get_pubkey(X509 *x);
ASN1_BIT_STRING * X509_get0_pubkey_bitstr(const X509 *x); ASN1_BIT_STRING * X509_get0_pubkey_bitstr(const X509 *x);
...@@ -921,8 +921,8 @@ int X509_REQ_add1_attr_by_txt(X509_REQ *req, ...@@ -921,8 +921,8 @@ int X509_REQ_add1_attr_by_txt(X509_REQ *req,
int X509_CRL_set_version(X509_CRL *x, long version); int X509_CRL_set_version(X509_CRL *x, long version);
int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name); int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name);
int X509_CRL_set_lastUpdate(X509_CRL *x, ASN1_TIME *tm); int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm);
int X509_CRL_set_nextUpdate(X509_CRL *x, ASN1_TIME *tm); int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm);
int X509_CRL_sort(X509_CRL *crl); int X509_CRL_sort(X509_CRL *crl);
int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial); int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial);
......
...@@ -104,7 +104,7 @@ int X509_set_subject_name(X509 *x, X509_NAME *name) ...@@ -104,7 +104,7 @@ int X509_set_subject_name(X509 *x, X509_NAME *name)
return(X509_NAME_set(&x->cert_info->subject,name)); return(X509_NAME_set(&x->cert_info->subject,name));
} }
int X509_set_notBefore(X509 *x, ASN1_TIME *tm) int X509_set_notBefore(X509 *x, const ASN1_TIME *tm)
{ {
ASN1_TIME *in; ASN1_TIME *in;
...@@ -122,7 +122,7 @@ int X509_set_notBefore(X509 *x, ASN1_TIME *tm) ...@@ -122,7 +122,7 @@ int X509_set_notBefore(X509 *x, ASN1_TIME *tm)
return(in != NULL); return(in != NULL);
} }
int X509_set_notAfter(X509 *x, ASN1_TIME *tm) int X509_set_notAfter(X509 *x, const ASN1_TIME *tm)
{ {
ASN1_TIME *in; ASN1_TIME *in;
......
...@@ -1157,12 +1157,12 @@ end: ...@@ -1157,12 +1157,12 @@ end:
return ok; return ok;
} }
int X509_cmp_current_time(ASN1_TIME *ctm) int X509_cmp_current_time(const ASN1_TIME *ctm)
{ {
return X509_cmp_time(ctm, NULL); return X509_cmp_time(ctm, NULL);
} }
int X509_cmp_time(ASN1_TIME *ctm, time_t *cmp_time) int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
{ {
char *str; char *str;
ASN1_TIME atm; ASN1_TIME atm;
......
...@@ -81,7 +81,7 @@ int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name) ...@@ -81,7 +81,7 @@ int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name)
} }
int X509_CRL_set_lastUpdate(X509_CRL *x, ASN1_TIME *tm) int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm)
{ {
ASN1_TIME *in; ASN1_TIME *in;
...@@ -99,7 +99,7 @@ int X509_CRL_set_lastUpdate(X509_CRL *x, ASN1_TIME *tm) ...@@ -99,7 +99,7 @@ int X509_CRL_set_lastUpdate(X509_CRL *x, ASN1_TIME *tm)
return(in != NULL); return(in != NULL);
} }
int X509_CRL_set_nextUpdate(X509_CRL *x, ASN1_TIME *tm) int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm)
{ {
ASN1_TIME *in; ASN1_TIME *in;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册