/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2any.c | 1074 #define DO_PRIVATE_KEY(impl, type, kind, output) \ argument 1079 key_to_##kind##_##output##_priv_bio, \ 1081 type##_##kind##_priv_to_der); 1084 #define DO_PUBLIC_KEY(impl, type, kind, output) \ argument 1089 key_to_##kind##_##output##_pub_bio, \ 1091 type##_##kind##_pub_to_der); 1094 #define DO_PARAMETERS(impl, type, kind, output) \ argument 1099 key_to_##kind##_##output##_param_bio, \ 1101 type##_##kind##_params_to_der); 1244 #define MAKE_ENCODER(impl, type, evp_type, kind, output) \ argument [all …]
|
H A D | decode_der2key.c | 781 #define MAKE_DECODER(keytype_name, keytype, type, kind) \ argument 782 static const struct keytype_desc_st kind##_##keytype##_desc = \ 784 DO_##kind(keytype) }; \ 786 static OSSL_FUNC_decoder_newctx_fn kind##_der2##keytype##_newctx; \ 788 static void *kind##_der2##keytype##_newctx(void *provctx) \ 790 return der2key_newctx(provctx, &kind##_##keytype##_desc); \ 792 static int kind##_der2##keytype##_does_selection(void *provctx, \ 796 &kind##_##keytype##_desc); \ 799 ossl_##kind##_der_to_##keytype##_decoder_functions[] = { \ 801 (void (*)(void))kind##_der2##keytype##_newctx }, \ [all …]
|
/openssl/test/ |
H A D | tls-provider.c | 1868 type##_##kind##_priv_to_der); 1877 type##_##kind##_pub_to_der); 1886 type##_##kind##_params_to_der); 2520 #define MAKE_DECODER(keytype_name, keytype, type, kind) \ argument 2521 static struct keytype_desc_st kind##_##keytype##_desc = \ 2523 DO_##kind(keytype) }; \ 2525 static OSSL_FUNC_decoder_newctx_fn kind##_der2##keytype##_newctx; \ 2527 static void *kind##_der2##keytype##_newctx(void *provctx) \ 2531 static int kind##_der2##keytype##_does_selection(void *provctx, \ 2535 &kind##_##keytype##_desc); \ [all …]
|
H A D | quic_ackm_test.c | 485 int kind; member 527 for (s = script; s->kind != TX_ACK_TIME_OP_END; ++s) in test_tx_ack_time_script() 528 if (s->kind == TX_ACK_TIME_OP_PKT) in test_tx_ack_time_script() 542 for (s = script; s->kind != TX_ACK_TIME_OP_END; ++s) in test_tx_ack_time_script() 543 switch (s->kind) { in test_tx_ack_time_script() 626 int kind; member 932 for (s = script; s->kind != RX_OPK_END; ++s) in test_rx_ack_actual() 933 if (s->kind == RX_OPK_TX) in test_rx_ack_actual() 946 for (s = script; s->kind != RX_OPK_END; ++s, ++opn) { in test_rx_ack_actual() 949 switch (s->kind) { in test_rx_ack_actual() [all …]
|
H A D | quic_fifd_test.c | 106 static int test_generic(INFO *info, int kind) in test_generic() argument 118 uint32_t pn_space = (kind == TEST_KIND_DISCARD) in test_generic() 181 if (kind == TEST_KIND_LOSS) { in test_generic() 201 switch (kind) { in test_generic()
|
/openssl/crypto/objects/ |
H A D | README.md | 5 kind of hacks in `objects.txt`. 37 The !module command was meant to define a kind of modularity.
|
/openssl/doc/man3/ |
H A D | BIO_get_rpoll_descriptor.pod | 28 which represents some kind of OS or non-OS resource which can be used to 39 Poll descriptors can represent different kinds of information. A typical kind of 61 The resource is whatever kind of handle is used by a given OS to represent
|
H A D | SSL_handle_events.pod | 16 exact operations performed by SSL_handle_events() vary depending on what kind of protocol 73 Calling SSL_handle_events() on any other kind of SSL object is a no-op. This is
|
H A D | DTLSv1_handle_timeout.pod | 23 called on any other kind of SSL object.
|
H A D | DTLSv1_get_timeout.pod | 27 any other kind of SSL object.
|
H A D | SSL_get_event_timeout.pod | 46 objects. If it is called on any other kind of SSL object, it always outputs
|
H A D | SSL_CTX_set_session_id_context.pod | 32 any kind of binary data with a given length, it is therefore possible
|
H A D | SSL_get_stream_id.pod | 91 a peer, and -1 if called on any other kind of SSL object.
|
H A D | EVP_PKEY_new.pod | 96 I<keytype> argument indicates what kind of key this is. The value should be a 108 indicates what kind of key this is. The value should be a NID for a public key
|
H A D | OSSL_ENCODER.pod | 47 encode an object of some kind to a encoded form, such as PEM,
|
H A D | OSSL_STORE_SEARCH.pod | 130 This criterion supports a search by match of an alias of some kind.
|
H A D | SSL_poll.pod | 164 Some event types do not make sense on a given kind of resource. In this case, 189 relation to a resource. This may mean that SSL_poll() does not support the kind
|
/openssl/doc/man7/ |
H A D | ossl_store.pod | 18 objects from a repository of any kind, addressable as a filename or
|
H A D | provider-decoder.pod | 183 This set of bits depend entirely on what kind of provider-side object is 273 prompt. This could be used to give the user information on what kind
|
H A D | provider-encoder.pod | 190 This set of bits depend entirely on what kind of provider-side object is 293 prompt. This could be used to give the user information on what kind
|
H A D | ossl-guide-libssl-introduction.pod | 68 This structure is used to indicate the kind of connection you want to make, e.g.
|
/openssl/ |
H A D | Configure | 2790 foreach my $kind (keys %$intent) { 2791 next if ($intent->{$kind}->{dst} eq 'shared_sources' 2794 my @src = @{$intent->{$kind}->{src}}; 2795 my $dst = $intent->{$kind}->{dst}; 2796 my $prodselect = $intent->{$kind}->{prodselect} // sub { @_ }; 2813 . '-' . $kind
|
/openssl/doc/designs/quic-design/ |
H A D | quic-overview.md | 130 which makes it a special kind of module. It dispatches the received packets
|
/openssl/doc/HOWTO/ |
H A D | certificates.txt | 88 was kind enough, your certificate is a raw DER thing in PEM format.
|
/openssl/crypto/bn/asm/ |
H A D | bn-c64xplus.asm | 13 ;; granted according to the License. Warranty of any kind is disclaimed.
|