2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-11-04 00:45:35 +00:00
|
|
|
*
|
2018-12-06 12:17:34 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:52:22 +00: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-11-04 00:45:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-11-04 00:45:35 +00:00
|
|
|
#include <openssl/conf.h>
|
|
|
|
#include <openssl/x509v3.h>
|
|
|
|
|
|
|
|
int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
|
2015-01-22 03:40:55 +00:00
|
|
|
BIT_STRING_BITNAME *tbl, int indent)
|
1999-11-04 00:45:35 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
BIT_STRING_BITNAME *bnam;
|
|
|
|
char first = 1;
|
|
|
|
BIO_printf(out, "%*s", indent, "");
|
|
|
|
for (bnam = tbl; bnam->lname; bnam++) {
|
|
|
|
if (ASN1_BIT_STRING_get_bit(bs, bnam->bitnum)) {
|
|
|
|
if (!first)
|
|
|
|
BIO_puts(out, ", ");
|
|
|
|
BIO_puts(out, bnam->lname);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BIO_puts(out, "\n");
|
|
|
|
return 1;
|
1999-11-04 00:45:35 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 09:17:50 +00:00
|
|
|
int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, const char *name, int value,
|
2015-01-22 03:40:55 +00:00
|
|
|
BIT_STRING_BITNAME *tbl)
|
1999-11-04 00:45:35 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
int bitnum;
|
|
|
|
bitnum = ASN1_BIT_STRING_num_asc(name, tbl);
|
|
|
|
if (bitnum < 0)
|
|
|
|
return 0;
|
|
|
|
if (bs) {
|
|
|
|
if (!ASN1_BIT_STRING_set_bit(bs, bitnum, value))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
1999-11-04 00:45:35 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 09:17:50 +00:00
|
|
|
int ASN1_BIT_STRING_num_asc(const char *name, BIT_STRING_BITNAME *tbl)
|
1999-11-04 00:45:35 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
BIT_STRING_BITNAME *bnam;
|
|
|
|
for (bnam = tbl; bnam->lname; bnam++) {
|
2015-05-06 18:56:14 +00:00
|
|
|
if ((strcmp(bnam->sname, name) == 0)
|
|
|
|
|| (strcmp(bnam->lname, name) == 0))
|
2015-01-22 03:40:55 +00:00
|
|
|
return bnam->bitnum;
|
|
|
|
}
|
|
|
|
return -1;
|
1999-11-04 00:45:35 +00:00
|
|
|
}
|