2016-05-17 18:52:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* 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
|
1998-12-21 10:52:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/objects.h>
|
2000-12-08 19:09:35 +00:00
|
|
|
#include <openssl/asn1t.h>
|
1999-07-21 22:10:23 +00:00
|
|
|
#include <openssl/x509.h>
|
2015-03-14 23:48:47 +00:00
|
|
|
#include "x509_lcl.h"
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2014-12-28 02:48:40 +00:00
|
|
|
/*-
|
|
|
|
* X509_ATTRIBUTE: this has the following form:
|
2000-12-08 19:09:35 +00:00
|
|
|
*
|
|
|
|
* typedef struct x509_attributes_st
|
2015-01-22 03:40:55 +00:00
|
|
|
* {
|
|
|
|
* ASN1_OBJECT *object;
|
2015-03-25 15:08:55 +00:00
|
|
|
* STACK_OF(ASN1_TYPE) *set;
|
2015-01-22 03:40:55 +00:00
|
|
|
* } X509_ATTRIBUTE;
|
2000-12-08 19:09:35 +00:00
|
|
|
*
|
|
|
|
*/
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-12-08 19:09:35 +00:00
|
|
|
ASN1_SEQUENCE(X509_ATTRIBUTE) = {
|
2015-01-22 03:40:55 +00:00
|
|
|
ASN1_SIMPLE(X509_ATTRIBUTE, object, ASN1_OBJECT),
|
2015-03-25 15:08:55 +00:00
|
|
|
ASN1_SET_OF(X509_ATTRIBUTE, set, ASN1_ANY)
|
2001-02-23 12:47:06 +00:00
|
|
|
} ASN1_SEQUENCE_END(X509_ATTRIBUTE)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2000-12-08 19:09:35 +00:00
|
|
|
IMPLEMENT_ASN1_FUNCTIONS(X509_ATTRIBUTE)
|
2001-07-27 02:22:42 +00:00
|
|
|
IMPLEMENT_ASN1_DUP_FUNCTION(X509_ATTRIBUTE)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-05-09 16:39:11 +00:00
|
|
|
X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
X509_ATTRIBUTE *ret = NULL;
|
|
|
|
ASN1_TYPE *val = NULL;
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if ((ret = X509_ATTRIBUTE_new()) == NULL)
|
|
|
|
return (NULL);
|
|
|
|
ret->object = OBJ_nid2obj(nid);
|
|
|
|
if ((val = ASN1_TYPE_new()) == NULL)
|
|
|
|
goto err;
|
2015-03-25 15:08:55 +00:00
|
|
|
if (!sk_ASN1_TYPE_push(ret->set, val))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
ASN1_TYPE_set(val, atrtype, value);
|
|
|
|
return (ret);
|
|
|
|
err:
|
2015-04-30 21:33:59 +00:00
|
|
|
X509_ATTRIBUTE_free(ret);
|
2015-04-30 15:30:03 +00:00
|
|
|
ASN1_TYPE_free(val);
|
2015-01-22 03:40:55 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|