| /freebsd-13-stable/crypto/heimdal/lib/asn1/ |
| HD | gen_encode.c | 110 int constructed = 1; in encode_type() local 143 constructed = 0; in encode_type() 147 constructed = 0; in encode_type() 151 constructed = 0; in encode_type() 159 constructed = 0; in encode_type() 247 constructed = 0; in encode_type() 252 constructed = 0; in encode_type() 379 constructed = 0; in encode_type() 383 constructed = 0; in encode_type() 387 constructed = 0; in encode_type() [all …]
|
| /freebsd-13-stable/crypto/openssl/crypto/asn1/ |
| HD | asn1_lib.c | 155 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, in ASN1_put_object() argument 161 i = (constructed) ? V_ASN1_CONSTRUCTED : 0; in ASN1_put_object() 178 if (constructed == 2) in ASN1_put_object() 215 int ASN1_object_size(int constructed, int length, int tag) in ASN1_object_size() argument 226 if (constructed == 2) { in ASN1_object_size()
|
| HD | asn1_par.c | 20 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, 24 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, in asn1_print_info() argument 31 if (constructed & V_ASN1_CONSTRUCTED) in asn1_print_info()
|
| /freebsd-13-stable/contrib/wpa/src/tls/ |
| HD | asn1.c | 136 if (hdr->constructed && in asn1_valid_der() 162 if (!hdr->constructed && in asn1_valid_der() 186 hdr->constructed = !!(hdr->identifier & (1 << 5)); in asn1_get_next() 279 title, hdr->class, hdr->constructed, hdr->tag); in asn1_print_hdr() 286 title, hdr->class, hdr->constructed, hdr->tag); in asn1_unexpected() 580 void asn1_put_hdr(struct wpabuf *buf, u8 class, int constructed, u8 tag, in asn1_put_hdr() argument 583 wpabuf_put_u8(buf, class << 6 | (constructed ? 0x20 : 0x00) | tag); in asn1_put_hdr()
|
| HD | asn1.h | 51 u8 identifier, class, constructed; member 79 void asn1_put_hdr(struct wpabuf *buf, u8 class, int constructed, u8 tag, 150 if (hdr->class != ASN1_CLASS_UNIVERSAL || hdr->constructed) in asn1_is_string_type()
|
| HD | tlsv1_client_ocsp.c | 272 if (asn1_is_cs_tag(&hdr, 0) && hdr.constructed) { in tls_process_ocsp_single_response() 426 !hdr.constructed || !asn1_is_cs_tag(&hdr, 0)) { in tls_process_basic_ocsp_response() 474 if (asn1_get_next(pos, end - pos, &hdr) == 0 && hdr.constructed && in tls_process_basic_ocsp_response() 696 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in tls_process_ocsp_response()
|
| HD | tlsv1_cred.c | 481 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in pkcs12_certbag() 628 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in pkcs12_safebag() 821 if (asn1_get_next(pos, end - pos, &hdr) < 0 || hdr.constructed || in pkcs12_parse_content_enc_data() 864 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in pkcs12_parse_content() 950 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in pkcs12_parse()
|
| /freebsd-13-stable/contrib/bearssl/src/x509/ |
| HD | asn1.t0 | 224 \ Read an ASN.1 tag. This function returns the "constructed" status 225 \ and the tag value. The constructed status is a boolean (-1 for 226 \ constructed, 0 for primitive). The tag value is either 0 to 31 for 232 : read-tag ( lim -- lim constructed value ) 253 : read-tag-or-end ( lim -- lim constructed value ) 259 : iftag-skip ( lim constructed value ref -- lim constructed value ) 314 \ Check that a given tag is constructed and has the expected value. 315 : check-tag-constructed ( constructed value refvalue -- ) 317 check-constructed ; 319 \ Check that the top value is true; report a "not constructed" [all …]
|
| HD | skey_decoder.t0 | 231 check-constructed read-length-open-elt 242 0x21 of check-constructed endof 359 0x10 of check-constructed decode-PKCS8-next endof
|
| HD | x509_decoder.t0 | 163 drop check-constructed read-length-open-elt 253 check-constructed read-length-open-elt
|
| /freebsd-13-stable/crypto/heimdal/doc/ |
| HD | layman.asc | 245 input from a file stream) with a constructed, indefinite- 329 primitive, definite-length encoding; constructed, definite- 330 length encoding; and constructed, indefinite-length 333 the constructed methods; and simple string types employ any 337 tagging employ the constructed methods. 343 the method is primitive or constructed. 347 constructed, indefinite-length method, these 352 the value. For the constructed methods, these 356 End-of-contents octets. For the constructed, indefinite- 427 constructed. [all …]
|
| /freebsd-13-stable/usr.sbin/ypldap/ |
| HD | aldap.c | 974 int constructed; in ldap_debug_elements() local 983 constructed = root->be_encoding; in ldap_debug_elements() 986 constructed = 0; in ldap_debug_elements() 1103 if (constructed) in ldap_debug_elements() 1104 root->be_encoding = constructed; in ldap_debug_elements() 1161 if (constructed && root->be_sub) { in ldap_debug_elements()
|
| /freebsd-13-stable/crypto/openssl/doc/man3/ |
| HD | EC_GROUP_new.pod | 77 A new curve can be constructed by calling EC_GROUP_new(), using the 129 be constructed. 139 All EC_GROUP_new* functions return a pointer to the newly constructed group, or
|
| HD | ASN1_TYPE_get.pod | 24 ASN1_TYPE structure can contain any ASN.1 type or constructed type 58 octets of the type. If B<type> corresponds to a constructed type or
|
| HD | SMIME_write_CMS.pod | 42 length constructed encoding except in the case of signed data with detached
|
| HD | SMIME_write_PKCS7.pod | 43 length constructed encoding except in the case of signed data with detached
|
| HD | EC_KEY_new.pod | 62 key. A new EC_KEY with no associated curve can be constructed by calling 67 Alternatively a new EC_KEY can be constructed by calling
|
| HD | DH_set_method.pod | 57 A new DH_METHOD object may be constructed using DH_meth_new() (see
|
| /freebsd-13-stable/bin/ed/test/ |
| HD | README | 10 constructed
|
| /freebsd-13-stable/contrib/wpa/src/common/ |
| HD | dpp_backup.c | 559 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in dpp_parse_recipient_infos() 594 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in dpp_parse_recipient_infos() 785 if (asn1_get_next(pos, end - pos, &hdr) < 0 || hdr.constructed || in dpp_parse_encrypted_content_info() 952 if (asn1_get_next(pos, end - pos, &hdr) < 0 || !hdr.constructed || in dpp_parse_one_asymmetric_key()
|
| /freebsd-13-stable/contrib/ntp/scripts/stats/ |
| HD | README | 14 constructed for later processing by the S utility.
|
| /freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/memprof/ |
| HD | memprof_allocator.cpp | 293 atomic_uint8_t constructed; member 299 atomic_store_relaxed(&constructed, 1); in Allocator() 518 if (memprof_inited && atomic_load_relaxed(&constructed) && in Deallocate()
|
| /freebsd-13-stable/sys/contrib/openzfs/config/ |
| HD | lib-link.m4 | 261 dnl and the already constructed $LIBNAME/$LTLIBNAME. 421 dnl or the already constructed $LIBNAME 485 dnl constructed $INCNAME, 534 dnl constructed $LIBNAME,
|
| /freebsd-13-stable/crypto/openssl/include/openssl/ |
| HD | asn1.h | 682 void ASN1_put_object(unsigned char **pp, int constructed, int length, 685 int ASN1_object_size(int constructed, int length, int tag);
|
| /freebsd-13-stable/crypto/openssh/ |
| HD | PROTOCOL.chacha20poly1305 | 54 The AEAD is constructed as follows: for each packet, generate a Poly1305
|