| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-04-23 20:55:52 +08:00
										 |  |  |  * Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:34:58 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef OPENSSL_NO_CT
 | 
					
						
							|  |  |  | # error "CT is disabled"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stddef.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							|  |  |  | #include <openssl/obj_mac.h>
 | 
					
						
							|  |  |  | #include <openssl/x509.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "ct_local.h"
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  | SCT_CTX *SCT_CTX_new(OPENSSL_CTX *libctx, const char *propq) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     SCT_CTX *sctx = OPENSSL_zalloc(sizeof(*sctx)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-27 06:01:28 +08:00
										 |  |  |     if (sctx == NULL) { | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         CTerr(CT_F_SCT_CTX_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2020-04-27 06:01:28 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     sctx->libctx = libctx; | 
					
						
							|  |  |  |     if (propq != NULL) { | 
					
						
							|  |  |  |         sctx->propq = OPENSSL_strdup(propq); | 
					
						
							|  |  |  |         if (sctx->propq == NULL) { | 
					
						
							|  |  |  |             CTerr(CT_F_SCT_CTX_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |             OPENSSL_free(sctx); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     return sctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SCT_CTX_free(SCT_CTX *sctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (sctx == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     EVP_PKEY_free(sctx->pkey); | 
					
						
							|  |  |  |     OPENSSL_free(sctx->pkeyhash); | 
					
						
							|  |  |  |     OPENSSL_free(sctx->ihash); | 
					
						
							|  |  |  |     OPENSSL_free(sctx->certder); | 
					
						
							|  |  |  |     OPENSSL_free(sctx->preder); | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     OPENSSL_free(sctx->propq); | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     OPENSSL_free(sctx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Finds the index of the first extension with the given NID in cert. | 
					
						
							|  |  |  |  * If there is more than one extension with that NID, *is_duplicated is set to | 
					
						
							|  |  |  |  * 1, otherwise 0 (unless it is NULL). | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int ct_x509_get_ext(X509 *cert, int nid, int *is_duplicated) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     int ret = X509_get_ext_by_NID(cert, nid, -1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (is_duplicated != NULL) | 
					
						
							|  |  |  |         *is_duplicated = ret >= 0 && X509_get_ext_by_NID(cert, nid, ret) >= 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |  * Modifies a certificate by deleting extensions and copying the issuer and | 
					
						
							|  |  |  |  * AKID from the presigner certificate, if necessary. | 
					
						
							|  |  |  |  * Returns 1 on success, 0 otherwise. | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-03-05 03:51:43 +08:00
										 |  |  | __owur static int ct_x509_cert_fixup(X509 *cert, X509 *presigner) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int preidx, certidx; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     int pre_akid_ext_is_dup, cert_akid_ext_is_dup; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     if (presigner == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     preidx = ct_x509_get_ext(presigner, NID_authority_key_identifier, | 
					
						
							|  |  |  |                              &pre_akid_ext_is_dup); | 
					
						
							|  |  |  |     certidx = ct_x509_get_ext(cert, NID_authority_key_identifier, | 
					
						
							|  |  |  |                               &cert_akid_ext_is_dup); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* An error occurred whilst searching for the extension */ | 
					
						
							|  |  |  |     if (preidx < -1 || certidx < -1) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     /* Invalid certificate if they contain duplicate extensions */ | 
					
						
							|  |  |  |     if (pre_akid_ext_is_dup || cert_akid_ext_is_dup) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     /* AKID must be present in both certificate or absent in both */ | 
					
						
							|  |  |  |     if (preidx >= 0 && certidx == -1) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (preidx == -1 && certidx >= 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     /* Copy issuer name */ | 
					
						
							|  |  |  |     if (!X509_set_issuer_name(cert, X509_get_issuer_name(presigner))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (preidx != -1) { | 
					
						
							|  |  |  |         /* Retrieve and copy AKID encoding */ | 
					
						
							|  |  |  |         X509_EXTENSION *preext = X509_get_ext(presigner, preidx); | 
					
						
							|  |  |  |         X509_EXTENSION *certext = X509_get_ext(cert, certidx); | 
					
						
							|  |  |  |         ASN1_OCTET_STRING *preextdata; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         /* Should never happen */ | 
					
						
							|  |  |  |         if (preext == NULL || certext == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         preextdata = X509_EXTENSION_get_data(preext); | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |         if (preextdata == NULL || | 
					
						
							|  |  |  |             !X509_EXTENSION_set_data(certext, preextdata)) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int SCT_CTX_set1_cert(SCT_CTX *sctx, X509 *cert, X509 *presigner) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned char *certder = NULL, *preder = NULL; | 
					
						
							|  |  |  |     X509 *pretmp = NULL; | 
					
						
							|  |  |  |     int certderlen = 0, prederlen = 0; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     int idx = -1; | 
					
						
							|  |  |  |     int poison_ext_is_dup, sct_ext_is_dup; | 
					
						
							|  |  |  |     int poison_idx = ct_x509_get_ext(cert, NID_ct_precert_poison, &poison_ext_is_dup); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |     /* Duplicate poison extensions are present - error */ | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     if (poison_ext_is_dup) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |     /* If *cert doesn't have a poison extension, it isn't a precert */ | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     if (poison_idx == -1) { | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |         /* cert isn't a precert, so we shouldn't have a presigner */ | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |         if (presigner != NULL) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         certderlen = i2d_X509(cert, &certder); | 
					
						
							|  |  |  |         if (certderlen < 0) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |     /* See if cert has a precert SCTs extension */ | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     idx = ct_x509_get_ext(cert, NID_ct_precert_scts, &sct_ext_is_dup); | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |     /* Duplicate SCT extensions are present - error */ | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |     if (sct_ext_is_dup) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |     if (idx >= 0 && poison_idx >= 0) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * cert can't both contain SCTs (i.e. have an SCT extension) and be a | 
					
						
							|  |  |  |          * precert (i.e. have a poison extension). | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (idx == -1) { | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |         idx = poison_idx; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 02:37:16 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If either a poison or SCT extension is present, remove it before encoding | 
					
						
							|  |  |  |      * cert. This, along with ct_x509_cert_fixup(), gets a TBSCertificate (see | 
					
						
							|  |  |  |      * RFC5280) from cert, which is what the CT log signed when it produced the | 
					
						
							|  |  |  |      * SCT. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     if (idx >= 0) { | 
					
						
							|  |  |  |         X509_EXTENSION *ext; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Take a copy of certificate so we don't modify passed version */ | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         pretmp = X509_dup(cert); | 
					
						
							|  |  |  |         if (pretmp == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         ext = X509_delete_ext(pretmp, idx); | 
					
						
							|  |  |  |         X509_EXTENSION_free(ext); | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!ct_x509_cert_fixup(pretmp, presigner)) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         prederlen = i2d_re_X509_tbs(pretmp, &preder); | 
					
						
							|  |  |  |         if (prederlen <= 0) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_free(pretmp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OPENSSL_free(sctx->certder); | 
					
						
							|  |  |  |     sctx->certder = certder; | 
					
						
							|  |  |  |     sctx->certderlen = certderlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OPENSSL_free(sctx->preder); | 
					
						
							|  |  |  |     sctx->preder = preder; | 
					
						
							|  |  |  |     sctx->prederlen = prederlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | err: | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     OPENSSL_free(certder); | 
					
						
							|  |  |  |     OPENSSL_free(preder); | 
					
						
							|  |  |  |     X509_free(pretmp); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  | __owur static int ct_public_key_hash(SCT_CTX *sctx, X509_PUBKEY *pkey, | 
					
						
							|  |  |  |                                      unsigned char **hash, size_t *hash_len) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-05 03:51:43 +08:00
										 |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     unsigned char *md = NULL, *der = NULL; | 
					
						
							|  |  |  |     int der_len; | 
					
						
							|  |  |  |     unsigned int md_len; | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     EVP_MD *sha256 = EVP_MD_fetch(sctx->libctx, "SHA2-256", sctx->propq); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (sha256 == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     /* Reuse buffer if possible */ | 
					
						
							|  |  |  |     if (*hash != NULL && *hash_len >= SHA256_DIGEST_LENGTH) { | 
					
						
							|  |  |  |         md = *hash; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         md = OPENSSL_malloc(SHA256_DIGEST_LENGTH); | 
					
						
							|  |  |  |         if (md == NULL) | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Calculate key hash */ | 
					
						
							|  |  |  |     der_len = i2d_X509_PUBKEY(pkey, &der); | 
					
						
							|  |  |  |     if (der_len <= 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     if (!EVP_Digest(der, der_len, md, &md_len, sha256, NULL)) | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     if (md != *hash) { | 
					
						
							|  |  |  |         OPENSSL_free(*hash); | 
					
						
							|  |  |  |         *hash = md; | 
					
						
							|  |  |  |         *hash_len = SHA256_DIGEST_LENGTH; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     md = NULL; | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     EVP_MD_free(sha256); | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     OPENSSL_free(md); | 
					
						
							|  |  |  |     OPENSSL_free(der); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int SCT_CTX_set1_issuer(SCT_CTX *sctx, const X509 *issuer) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-05 03:51:43 +08:00
										 |  |  |     return SCT_CTX_set1_issuer_pubkey(sctx, X509_get_X509_PUBKEY(issuer)); | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int SCT_CTX_set1_issuer_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     return ct_public_key_hash(sctx, pubkey, &sctx->ihash, &sctx->ihashlen); | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int SCT_CTX_set1_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EVP_PKEY *pkey = X509_PUBKEY_get(pubkey); | 
					
						
							| 
									
										
										
										
											2016-03-01 04:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |     if (pkey == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-03 23:25:18 +08:00
										 |  |  |     if (!ct_public_key_hash(sctx, pubkey, &sctx->pkeyhash, &sctx->pkeyhashlen)) { | 
					
						
							| 
									
										
										
										
											2016-02-25 21:33:48 +08:00
										 |  |  |         EVP_PKEY_free(pkey); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     EVP_PKEY_free(sctx->pkey); | 
					
						
							|  |  |  |     sctx->pkey = pkey; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-08 23:02:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void SCT_CTX_set_time(SCT_CTX *sctx, uint64_t time_in_ms) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     sctx->epoch_time_in_ms = time_in_ms; | 
					
						
							|  |  |  | } |