2008-11-06 02:39:08 +08:00
|
|
|
/*
|
2020-10-15 21:10:06 +08:00
|
|
|
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
1999-03-29 07:17:34 +08:00
|
|
|
*
|
2018-12-06 20:49:51 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:52:22 +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
|
1999-03-29 07:17:34 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/pkcs12.h>
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "p12_local.h"
|
1999-03-29 07:17:34 +08:00
|
|
|
|
|
|
|
/* Add a local keyid to a safebag */
|
|
|
|
|
2001-06-11 08:43:20 +08:00
|
|
|
int PKCS12_add_localkeyid(PKCS12_SAFEBAG *bag, unsigned char *name,
|
1999-04-20 05:31:43 +08:00
|
|
|
int namelen)
|
1999-03-29 07:17:34 +08:00
|
|
|
{
|
2001-06-11 08:43:20 +08:00
|
|
|
if (X509at_add1_attr_by_NID(&bag->attrib, NID_localKeyID,
|
2019-09-19 13:39:13 +08:00
|
|
|
V_ASN1_OCTET_STRING, name, namelen) != NULL)
|
2001-06-11 08:43:20 +08:00
|
|
|
return 1;
|
|
|
|
else
|
1999-03-29 07:17:34 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add key usage to PKCS#8 structure */
|
|
|
|
|
2001-06-11 08:43:20 +08:00
|
|
|
int PKCS8_add_keyusage(PKCS8_PRIV_KEY_INFO *p8, int usage)
|
1999-03-29 07:17:34 +08:00
|
|
|
{
|
2016-03-04 11:48:39 +08:00
|
|
|
unsigned char us_val = (unsigned char)usage;
|
|
|
|
return PKCS8_pkey_add1_attr_by_NID(p8, NID_key_usage,
|
|
|
|
V_ASN1_BIT_STRING, &us_val, 1);
|
1999-03-29 07:17:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a friendlyname to a safebag */
|
|
|
|
|
2001-06-11 08:43:20 +08:00
|
|
|
int PKCS12_add_friendlyname_asc(PKCS12_SAFEBAG *bag, const char *name,
|
1999-04-23 23:01:15 +08:00
|
|
|
int namelen)
|
1999-03-29 07:17:34 +08:00
|
|
|
{
|
2001-06-11 08:43:20 +08:00
|
|
|
if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
|
2019-09-19 13:39:13 +08:00
|
|
|
MBSTRING_ASC, (unsigned char *)name, namelen) != NULL)
|
2001-06-11 08:43:20 +08:00
|
|
|
return 1;
|
|
|
|
else
|
1999-03-29 07:17:34 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-07-26 07:48:01 +08:00
|
|
|
int PKCS12_add_friendlyname_utf8(PKCS12_SAFEBAG *bag, const char *name,
|
|
|
|
int namelen)
|
|
|
|
{
|
|
|
|
if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
|
2019-09-19 13:39:13 +08:00
|
|
|
MBSTRING_UTF8, (unsigned char *)name, namelen) != NULL)
|
2016-07-26 07:48:01 +08:00
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-11 08:43:20 +08:00
|
|
|
int PKCS12_add_friendlyname_uni(PKCS12_SAFEBAG *bag,
|
1999-04-23 23:01:15 +08:00
|
|
|
const unsigned char *name, int namelen)
|
1999-03-29 07:17:34 +08:00
|
|
|
{
|
2001-06-11 08:43:20 +08:00
|
|
|
if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
|
2019-09-19 13:39:13 +08:00
|
|
|
MBSTRING_BMP, name, namelen) != NULL)
|
2001-06-11 08:43:20 +08:00
|
|
|
return 1;
|
|
|
|
else
|
1999-03-29 07:17:34 +08:00
|
|
|
return 0;
|
2001-06-11 08:43:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int PKCS12_add_CSPName_asc(PKCS12_SAFEBAG *bag, const char *name, int namelen)
|
|
|
|
{
|
|
|
|
if (X509at_add1_attr_by_NID(&bag->attrib, NID_ms_csp_name,
|
2019-09-19 13:39:13 +08:00
|
|
|
MBSTRING_ASC, (unsigned char *)name, namelen) != NULL)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PKCS12_add1_attr_by_NID(PKCS12_SAFEBAG *bag, int nid, int type,
|
|
|
|
const unsigned char *bytes, int len)
|
|
|
|
{
|
|
|
|
if (X509at_add1_attr_by_NID(&bag->attrib, nid, type, bytes, len) != NULL)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PKCS12_add1_attr_by_txt(PKCS12_SAFEBAG *bag, const char *attrname, int type,
|
|
|
|
const unsigned char *bytes, int len)
|
|
|
|
{
|
|
|
|
if (X509at_add1_attr_by_txt(&bag->attrib, attrname, type, bytes, len) != NULL)
|
2001-06-11 08:43:20 +08:00
|
|
|
return 1;
|
|
|
|
else
|
1999-03-29 07:17:34 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-13 20:40:05 +08:00
|
|
|
ASN1_TYPE *PKCS12_get_attr_gen(const STACK_OF(X509_ATTRIBUTE) *attrs,
|
|
|
|
int attr_nid)
|
1999-03-29 07:17:34 +08:00
|
|
|
{
|
2022-08-01 22:33:35 +08:00
|
|
|
int i = X509at_get_attr_by_NID(attrs, attr_nid, -1);
|
|
|
|
|
|
|
|
if (i < 0)
|
|
|
|
return NULL;
|
|
|
|
return X509_ATTRIBUTE_get0_type(X509at_get_attr(attrs, i), 0);
|
1999-03-29 07:17:34 +08:00
|
|
|
}
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
char *PKCS12_get_friendlyname(PKCS12_SAFEBAG *bag)
|
1999-03-29 07:17:34 +08:00
|
|
|
{
|
2016-08-13 19:07:42 +08:00
|
|
|
const ASN1_TYPE *atype;
|
2015-05-07 01:43:59 +08:00
|
|
|
|
2015-09-27 19:41:53 +08:00
|
|
|
if ((atype = PKCS12_SAFEBAG_get0_attr(bag, NID_friendlyName)) == NULL)
|
1999-03-29 07:17:34 +08:00
|
|
|
return NULL;
|
|
|
|
if (atype->type != V_ASN1_BMPSTRING)
|
|
|
|
return NULL;
|
2016-07-26 07:48:01 +08:00
|
|
|
return OPENSSL_uni2utf8(atype->value.bmpstring->data,
|
|
|
|
atype->value.bmpstring->length);
|
1999-03-29 07:17:34 +08:00
|
|
|
}
|
2015-09-27 07:33:59 +08:00
|
|
|
|
2016-08-13 19:07:42 +08:00
|
|
|
const STACK_OF(X509_ATTRIBUTE) *
|
|
|
|
PKCS12_SAFEBAG_get0_attrs(const PKCS12_SAFEBAG *bag)
|
2015-09-27 07:33:59 +08:00
|
|
|
{
|
|
|
|
return bag->attrib;
|
|
|
|
}
|
2022-08-19 15:46:47 +08:00
|
|
|
|
2022-10-07 19:24:20 +08:00
|
|
|
void PKCS12_SAFEBAG_set0_attrs(PKCS12_SAFEBAG *bag, STACK_OF(X509_ATTRIBUTE) *attrs)
|
2022-08-19 15:46:47 +08:00
|
|
|
{
|
|
|
|
if (bag->attrib != attrs)
|
|
|
|
sk_X509_ATTRIBUTE_free(bag->attrib);
|
|
|
|
|
2022-10-07 19:24:20 +08:00
|
|
|
bag->attrib = attrs;
|
2022-08-19 15:46:47 +08:00
|
|
|
}
|