Searched refs:bitnum (Results 1 – 9 of 9) sorted by relevance
/openssl/crypto/asn1/ |
H A D | t_bitst.c | 22 if (ASN1_BIT_STRING_get_bit(bs, bnam->bitnum)) { in ASN1_BIT_STRING_name_print() 36 int bitnum; in ASN1_BIT_STRING_set_asc() local 37 bitnum = ASN1_BIT_STRING_num_asc(name, tbl); in ASN1_BIT_STRING_set_asc() 38 if (bitnum < 0) in ASN1_BIT_STRING_set_asc() 41 if (!ASN1_BIT_STRING_set_bit(bs, bitnum, value)) in ASN1_BIT_STRING_set_asc() 53 return bnam->bitnum; in ASN1_BIT_STRING_num_asc()
|
H A D | asn1_gen.c | 745 long bitnum; in bitstr_cb() local 749 bitnum = strtoul(elem, &eptr, 10); in bitstr_cb() 752 if (bitnum < 0) { in bitstr_cb() 756 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1)) { in bitstr_cb()
|
/openssl/crypto/x509/ |
H A D | v3_bitst.c | 52 if (ASN1_BIT_STRING_get_bit(bits, bnam->bitnum)) in STACK_OF() 75 if (!ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1)) { in v2i_ASN1_BIT_STRING()
|
H A D | v3_enum.c | 49 if (strval == enam->bitnum) in i2s_ASN1_ENUMERATED_TABLE()
|
H A D | v3_crld.c | 170 if (!ASN1_BIT_STRING_set_bit(*preas, pbn->bitnum, 1)) in set_reasons() 192 if (ASN1_BIT_STRING_get_bit(rflags, pbn->bitnum)) { in print_reasons()
|
/openssl/include/internal/ |
H A D | provider.h | 102 int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum); 103 int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum,
|
/openssl/crypto/ |
H A D | provider_core.c | 1684 int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum) in ossl_provider_set_operation_bit() argument 1686 size_t byte = bitnum / 8; in ossl_provider_set_operation_bit() 1687 unsigned char bit = (1 << (bitnum % 8)) & 0xFF; in ossl_provider_set_operation_bit() 1709 int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum, in ossl_provider_test_operation_bit() argument 1712 size_t byte = bitnum / 8; in ossl_provider_test_operation_bit() 1713 unsigned char bit = (1 << (bitnum % 8)) & 0xFF; in ossl_provider_test_operation_bit()
|
/openssl/doc/internal/man3/ |
H A D | ossl_provider_new.pod | 93 int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum); 94 int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum, 289 ossl_provider_set_operation_bit() registers a 1 for operation I<bitnum> 292 ossl_provider_test_operation_bit() checks if the bit operation I<bitnum>
|
/openssl/include/openssl/ |
H A D | asn1.h.in | 518 int bitnum; member
|
Completed in 40 milliseconds