003 File Manager
Current Path:
/usr/src/crypto/openssl/crypto/x509
usr
/
src
/
crypto
/
openssl
/
crypto
/
x509
/
📁
..
📄
build.info
(493 B)
📄
by_dir.c
(11.13 KB)
📄
by_file.c
(6.51 KB)
📄
t_crl.c
(2.81 KB)
📄
t_req.c
(6.92 KB)
📄
t_x509.c
(10.95 KB)
📄
x509_att.c
(9.51 KB)
📄
x509_cmp.c
(12.76 KB)
📄
x509_d2.c
(1.58 KB)
📄
x509_def.c
(916 B)
📄
x509_err.c
(9.15 KB)
📄
x509_ext.c
(4.34 KB)
📄
x509_local.h
(5.91 KB)
📄
x509_lu.c
(23.12 KB)
📄
x509_meth.c
(3.81 KB)
📄
x509_obj.c
(4.95 KB)
📄
x509_r2x.c
(1.78 KB)
📄
x509_req.c
(7.83 KB)
📄
x509_set.c
(5.73 KB)
📄
x509_trs.c
(8.77 KB)
📄
x509_txt.c
(7.87 KB)
📄
x509_v3.c
(5.71 KB)
📄
x509_vfy.c
(105.7 KB)
📄
x509_vpm.c
(16.9 KB)
📄
x509cset.c
(4.03 KB)
📄
x509name.c
(9.85 KB)
📄
x509rset.c
(1.05 KB)
📄
x509spki.c
(2.17 KB)
📄
x509type.c
(1.96 KB)
📄
x_all.c
(13.77 KB)
📄
x_attrib.c
(1.49 KB)
📄
x_crl.c
(14.7 KB)
📄
x_exten.c
(1.02 KB)
📄
x_name.c
(15.71 KB)
📄
x_pubkey.c
(9.14 KB)
📄
x_req.c
(2.29 KB)
📄
x_x509.c
(6.96 KB)
📄
x_x509a.c
(4.27 KB)
Editing: x_x509a.c
/* * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * 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 */ #include <stdio.h> #include "internal/cryptlib.h" #include <openssl/evp.h> #include <openssl/asn1t.h> #include <openssl/x509.h> #include "crypto/x509.h" /* * X509_CERT_AUX routines. These are used to encode additional user * modifiable data about a certificate. This data is appended to the X509 * encoding when the *_X509_AUX routines are used. This means that the * "traditional" X509 routines will simply ignore the extra data. */ static X509_CERT_AUX *aux_get(X509 *x); ASN1_SEQUENCE(X509_CERT_AUX) = { ASN1_SEQUENCE_OF_OPT(X509_CERT_AUX, trust, ASN1_OBJECT), ASN1_IMP_SEQUENCE_OF_OPT(X509_CERT_AUX, reject, ASN1_OBJECT, 0), ASN1_OPT(X509_CERT_AUX, alias, ASN1_UTF8STRING), ASN1_OPT(X509_CERT_AUX, keyid, ASN1_OCTET_STRING), ASN1_IMP_SEQUENCE_OF_OPT(X509_CERT_AUX, other, X509_ALGOR, 1) } ASN1_SEQUENCE_END(X509_CERT_AUX) IMPLEMENT_ASN1_FUNCTIONS(X509_CERT_AUX) int X509_trusted(const X509 *x) { return x->aux ? 1 : 0; } static X509_CERT_AUX *aux_get(X509 *x) { if (x == NULL) return NULL; if (x->aux == NULL && (x->aux = X509_CERT_AUX_new()) == NULL) return NULL; return x->aux; } int X509_alias_set1(X509 *x, const unsigned char *name, int len) { X509_CERT_AUX *aux; if (!name) { if (!x || !x->aux || !x->aux->alias) return 1; ASN1_UTF8STRING_free(x->aux->alias); x->aux->alias = NULL; return 1; } if ((aux = aux_get(x)) == NULL) return 0; if (aux->alias == NULL && (aux->alias = ASN1_UTF8STRING_new()) == NULL) return 0; return ASN1_STRING_set(aux->alias, name, len); } int X509_keyid_set1(X509 *x, const unsigned char *id, int len) { X509_CERT_AUX *aux; if (!id) { if (!x || !x->aux || !x->aux->keyid) return 1; ASN1_OCTET_STRING_free(x->aux->keyid); x->aux->keyid = NULL; return 1; } if ((aux = aux_get(x)) == NULL) return 0; if (aux->keyid == NULL && (aux->keyid = ASN1_OCTET_STRING_new()) == NULL) return 0; return ASN1_STRING_set(aux->keyid, id, len); } unsigned char *X509_alias_get0(X509 *x, int *len) { if (!x->aux || !x->aux->alias) return NULL; if (len) *len = x->aux->alias->length; return x->aux->alias->data; } unsigned char *X509_keyid_get0(X509 *x, int *len) { if (!x->aux || !x->aux->keyid) return NULL; if (len) *len = x->aux->keyid->length; return x->aux->keyid->data; } int X509_add1_trust_object(X509 *x, const ASN1_OBJECT *obj) { X509_CERT_AUX *aux; ASN1_OBJECT *objtmp = NULL; if (obj) { objtmp = OBJ_dup(obj); if (!objtmp) return 0; } if ((aux = aux_get(x)) == NULL) goto err; if (aux->trust == NULL && (aux->trust = sk_ASN1_OBJECT_new_null()) == NULL) goto err; if (!objtmp || sk_ASN1_OBJECT_push(aux->trust, objtmp)) return 1; err: ASN1_OBJECT_free(objtmp); return 0; } int X509_add1_reject_object(X509 *x, const ASN1_OBJECT *obj) { X509_CERT_AUX *aux; ASN1_OBJECT *objtmp; if ((objtmp = OBJ_dup(obj)) == NULL) return 0; if ((aux = aux_get(x)) == NULL) goto err; if (aux->reject == NULL && (aux->reject = sk_ASN1_OBJECT_new_null()) == NULL) goto err; return sk_ASN1_OBJECT_push(aux->reject, objtmp); err: ASN1_OBJECT_free(objtmp); return 0; } void X509_trust_clear(X509 *x) { if (x->aux) { sk_ASN1_OBJECT_pop_free(x->aux->trust, ASN1_OBJECT_free); x->aux->trust = NULL; } } void X509_reject_clear(X509 *x) { if (x->aux) { sk_ASN1_OBJECT_pop_free(x->aux->reject, ASN1_OBJECT_free); x->aux->reject = NULL; } } STACK_OF(ASN1_OBJECT) *X509_get0_trust_objects(X509 *x) { if (x->aux != NULL) return x->aux->trust; return NULL; } STACK_OF(ASN1_OBJECT) *X509_get0_reject_objects(X509 *x) { if (x->aux != NULL) return x->aux->reject; return NULL; }
Upload File
Create Folder