]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/asn1/t_bitst.c
Copyright consolidation 09/10
[thirdparty/openssl.git] / crypto / asn1 / t_bitst.c
CommitLineData
0f113f3e 1/*
b1322259 2 * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
ce1b4fe1 3 *
b1322259
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
ce1b4fe1
DSH
8 */
9
10#include <stdio.h>
b39fc560 11#include "internal/cryptlib.h"
ce1b4fe1
DSH
12#include <openssl/conf.h>
13#include <openssl/x509v3.h>
14
15int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
0f113f3e 16 BIT_STRING_BITNAME *tbl, int indent)
ce1b4fe1 17{
0f113f3e
MC
18 BIT_STRING_BITNAME *bnam;
19 char first = 1;
20 BIO_printf(out, "%*s", indent, "");
21 for (bnam = tbl; bnam->lname; bnam++) {
22 if (ASN1_BIT_STRING_get_bit(bs, bnam->bitnum)) {
23 if (!first)
24 BIO_puts(out, ", ");
25 BIO_puts(out, bnam->lname);
26 first = 0;
27 }
28 }
29 BIO_puts(out, "\n");
30 return 1;
ce1b4fe1
DSH
31}
32
33int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value,
0f113f3e 34 BIT_STRING_BITNAME *tbl)
ce1b4fe1 35{
0f113f3e
MC
36 int bitnum;
37 bitnum = ASN1_BIT_STRING_num_asc(name, tbl);
38 if (bitnum < 0)
39 return 0;
40 if (bs) {
41 if (!ASN1_BIT_STRING_set_bit(bs, bitnum, value))
42 return 0;
43 }
44 return 1;
ce1b4fe1
DSH
45}
46
47int ASN1_BIT_STRING_num_asc(char *name, BIT_STRING_BITNAME *tbl)
48{
0f113f3e
MC
49 BIT_STRING_BITNAME *bnam;
50 for (bnam = tbl; bnam->lname; bnam++) {
86885c28
RS
51 if ((strcmp(bnam->sname, name) == 0)
52 || (strcmp(bnam->lname, name) == 0))
0f113f3e
MC
53 return bnam->bitnum;
54 }
55 return -1;
ce1b4fe1 56}