OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CRLSet
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/cert/
crl_set.h
24
// A
CRLSet
is a structure that lists the serial numbers of revoked
27
class NET_EXPORT
CRLSet
: public base::RefCountedThreadSafe<
CRLSet
> {
35
// Parse parses the bytes in |data| and, on success, puts a new
CRLSet
in
38
scoped_refptr<
CRLSet
>* out_crl_set);
54
// specified in the
CRLSet
.
57
// ApplyDelta returns a new
CRLSet
in |out_crl_set| that is the result of
60
scoped_refptr<
CRLSet
>* out_crl_set);
68
// and serializing a
CRLSet
is a lossless operation - the resulting bytes
82
// crls returns the internal state of this
CRLSet
. It should only be used i
[
all
...]
crl_set.cc
47
CRLSet
::
CRLSet
()
52
CRLSet
::~
CRLSet
() {
55
//
CRLSet
format:
69
// ContentType (string): "
CRLSet
" or "CRLSetDelta" (magic value)
71
// contains the sequence number of the base
CRLSet
.
74
// A delta
CRLSet
is similar to a
CRLSet
:
112
// A delta
CRLSet
applies to a specific CRL set as given in th
[
all
...]
Completed in 35 milliseconds