Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:certs
(Results
1 - 6
of
6
) sorted by relevance
/commonlibrary/rust/ylong_http/ylong_http_client/examples/
H
A
D
async_certs_adapter.rs
25
fn verify(&self,
certs
: &ServerCerts) -> bool {
in verify()
27
let _ =
certs
.version().unwrap();
in verify()
29
let _ =
certs
.issuer().unwrap();
in verify()
31
let _ =
certs
.cert_name().unwrap();
in verify()
36
let _ =
certs
.cmp_pem_cert(contents.as_bytes()).unwrap();
in verify()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/
H
A
D
x509.rs
88
let mut
certs
= vec![];
variables
101
certs
.push(X509(r));
104
Ok(
certs
)
H
A
D
adapter.rs
205
/// # fn example(
certs
: Vec<Cert>) {
206
/// let builder = TlsConfigBuilder::new().add_root_certificates(
certs
);
209
pub fn add_root_certificates(mut self, mut
certs
: Vec<Cert>) -> Self {
in add_root_certificates()
210
self.certs_list.append(&mut
certs
);
in add_root_certificates()
254
/// validation. Default to `true` -- uses built-in system
certs
.
608
/// let
certs
= Certificate::from_pem(pem);
747
.expect("Sets
certs
error.");
in ut_add_root_certificates()
748
let
certs
= match certificate.inner {
in ut_add_root_certificates()
753
let builder = TlsConfigBuilder::new().add_root_certificates(
certs
).build();
in ut_add_root_certificates()
928
let
certs
in ut_certificate_from_pem()
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/tls/verifier/
H
A
D
mod.rs
17
/// used to custom verify
certs
19
/// provided to users custom
certs
adapter
20
fn verify(&self,
certs
: &ServerCerts) -> bool;
in verify()
37
fn verify(&self,
certs
: &ServerCerts) -> bool {
in verify()
38
self.inner.verify(
certs
)
in verify()
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
H
A
D
client.rs
378
pub fn add_root_certificate(mut self,
certs
: crate::util::Certificate) -> Self {
in add_root_certificate()
381
match
certs
.into_inner() {
in add_root_certificate()
428
/// validation. Default to `true` -- uses built-in system
certs
.
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H
A
D
client.rs
760
pub fn add_root_certificate(mut self,
certs
: crate::util::Certificate) -> Self {
in add_root_certificate()
763
match
certs
.into_inner() {
in add_root_certificate()
831
/// validation. Default to `true` -- uses built-in system
certs
.
902
/// Controls the use of TLS
certs
verifier.
925
/// fn verify(&self,
certs
: &ServerCerts) -> bool {
1034
fn verify(&self,
certs
: &ServerCerts) -> bool {
in verify()
1036
let _v =
certs
.version().unwrap();
in verify()
1038
let _i =
certs
.issuer().unwrap();
in verify()
1040
let _n =
certs
.cert_name().unwrap();
in verify()
1061
let _c =
certs
in verify()
[all...]
Completed in 6 milliseconds