summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDamian Hobson-Garcia <dhobsong@igel.co.jp>2023-06-30 17:12:57 -0400
committerMatt Caswell <matt@openssl.org>2024-04-24 14:05:35 +0100
commit1eeec94f1fd7de60248d1093d5552dc1f05c2fc9 (patch)
tree7e3a18eb67d62ca5cf68963af1f48ab008c8f2b2 /crypto
parentb97fb22f596bfb528e69402b1bdcdf144a563918 (diff)
x509_acert: Add and retrieve certificate extensions
Add API to manage attribute certificate extensions Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15857)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509/x509_acert.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/crypto/x509/x509_acert.c b/crypto/x509/x509_acert.c
index 7e0d5f139b..9499a14cc0 100644
--- a/crypto/x509/x509_acert.c
+++ b/crypto/x509/x509_acert.c
@@ -242,3 +242,19 @@ int X509_ACERT_add1_attr_by_txt(X509_ACERT *x, const char *attrname, int type,
return X509at_add1_attr_by_txt(attrs, attrname, type, bytes, len) != NULL;
}
+
+void *X509_ACERT_get_ext_d2i(const X509_ACERT *x, int nid, int *crit, int *idx)
+{
+ return X509V3_get_d2i(x->acinfo->extensions, nid, crit, idx);
+}
+
+int X509_ACERT_add1_ext_i2d(X509_ACERT *x, int nid, void *value, int crit,
+ unsigned long flags)
+{
+ return X509V3_add1_i2d(&x->acinfo->extensions, nid, value, crit, flags);
+}
+
+const STACK_OF(X509_EXTENSION) *X509_ACERT_get0_extensions(const X509_ACERT *x)
+{
+ return x->acinfo->extensions;
+}