Searched refs:filter (Results 1 – 25 of 50) sorted by relevance
12
5 BIO_f_null - null filter15 BIO_f_null() returns the null filter BIO method. This is a filter BIO18 All requests to a null filter BIO are passed through to the next BIO in19 the chain: this means that a BIO chain containing a null filter BIO24 As may be apparent a null filter BIO is not particularly useful.28 BIO_f_null() returns the null filter BIO method.
5 BIO_new_CMS - CMS streaming filter BIO15 BIO_new_CMS() returns a streaming filter BIO chain based on B<cms>. The output16 of the filter is written to B<out>. Any data written to the chain is21 The chain returned by this function behaves like a standard filter BIO. It35 Any content written through the filter is used verbatim: no canonical
6 - prefix BIO filter19 BIO_f_cipher() returns the prefix BIO method. This is a filter for24 going through this filter, the prefix is output first, then the amount
5 BIO_f_base64 - base64 BIO filter18 BIO_f_base64() returns the base64 BIO method. This is a filter
22 OSSL_STORE_expect() helps applications filter what OSSL_STORE_load() returns45 If a more elaborate filter is required by the application, a better choice
66 $proxy->filter(\&sigalgs_filter);104 $proxy->filter(\&modify_cert_verify_sigalg);118 $proxy->filter(undef);132 $proxy->filter(undef);140 $proxy->filter(\&sigalgs_filter);220 $proxy->filter(undef);223 $proxy->filter(\&sigalgs_filter);250 $proxy->filter(\&modify_sigalgs_filter);262 $proxy->filter(\&modify_sigalgs_filter);275 $proxy->filter(\&modify_sigalgs_cert_filter);[all …]
201 $proxy->filter(\&inject_duplicate_extension_serverhello);208 $proxy->filter(\&extension_filter);217 $proxy->filter(\&inject_unsolicited_extension);227 $proxy->filter(\&inject_cryptopro_extension);238 $proxy->filter(\&inject_unsolicited_extension);251 $proxy->filter(\&inject_unsolicited_extension);264 $proxy->filter(\&inject_unsolicited_extension);
106 $proxy->filter(\&ticket_filter);115 $proxy->filter(undef);120 $proxy->filter(\&inject_empty_ticket_filter);127 $proxy->filter(undef);140 $proxy->filter(\&inject_ticket_extension_filter);150 $proxy->filter(\&inject_empty_ticket_filter);
47 $proxy->filter(\&reneg_filter);60 $proxy->filter(undef);90 $proxy->filter(\&sigalgs_filter);103 $proxy->filter(undef);
57 $proxy->filter(\&modify_psk_filter);71 $proxy->filter(undef);84 $proxy->filter(\&modify_psk_filter);107 $proxy->filter(\&remove_sig_algs_filter);
73 $proxy->filter(\&add_frag_alert_filter);96 $proxy->filter(\&add_sslv2_filter);152 $proxy->filter(\&add_unknown_record_type);172 $proxy->filter(\&change_version);183 $proxy->filter(\&change_version);190 $proxy->filter(\&add_unknown_record_type);198 $proxy->filter(\&change_outer_record_type);215 $proxy->filter(\¬_on_record_boundary);
79 $proxy->filter(\&modify_key_shares_filter);104 $proxy->filter(undef);115 $proxy->filter(undef);139 $proxy->filter(\&modify_key_shares_filter);259 $proxy->filter(undef);266 $proxy->filter(\&modify_key_shares_filter);
45 $proxy->filter(\&downgrade_filter);80 $proxy->filter(undef);88 $proxy->filter(undef);
51 $proxy->filter(\&add_comp_filter);71 $proxy->filter(\&add_comp_filter);
38 $proxy->filter(\&alert_filter);
51 filter => sub { $_->exists() })98 filter => sub { $_->exists() });120 my $filter = sub {126 $ordinals->rewrite(filter => $filter);
272 my $filter = $opts{filter} // sub { 1; };275 if (ref($filter) eq 'ARRAY') {277 if ($filter->[0] == F_NUMBER) {278 my $index = $filter->[1];280 } elsif ($filter->[0] == F_NAME) {281 my $index = $self->{name2num}->{$filter->[1]};286 } elsif (ref($filter) eq 'CODE') {287 @l = grep { $filter->($_) }466 my @items = $self->items(filter => f_name($name));538 my @items = $self->items(filter => $f_byalias);[all …]
77 my ($filter,85 filter => $filter,503 if (defined $self->filter) {504 $self->filter->($self);599 sub filter subroutine603 $self->{filter} = shift;605 return $self->{filter};
20 There are two types of BIO, a source/sink BIO and a filter BIO.25 A filter BIO takes data from one BIO and passes it through to28 encryption BIO). The effect of a filter BIO may change according35 BIO and one or more filter BIOs. Data read from or written to the53 a filter BIO with I<BIO_f_>.
18 filter => \&oids_to_c::filter_to_C });
19 filter => \&oids_to_c::filter_to_C });
18 filter => \&oids_to_c::filter_to_H });
Completed in 23 milliseconds