OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:certrefs
(Results
1 - 3
of
3
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java
92
final long[]
certRefs
= new long[certs.length];
103
certRefs
[j] = certs[j].getContext();
108
return NativeCrypto.ASN1_seq_pack_X509(
certRefs
);
110
return NativeCrypto.i2d_PKCS7(
certRefs
);
144
final long[]
certRefs
;
146
certRefs
= NativeCrypto.ASN1_seq_unpack_X509_bio(bis.getBioContext());
159
if (
certRefs
== null) {
164
new ArrayList<OpenSSLX509Certificate>(
certRefs
.length);
165
for (int i =
certRefs
.length - 1; i >= 0; i--) {
166
if (
certRefs
[i] == 0)
[
all
...]
OpenSSLX509CRL.java
74
final long[]
certRefs
;
76
certRefs
= NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CRLS);
83
final List<OpenSSLX509CRL> certs = new ArrayList<OpenSSLX509CRL>(
certRefs
.length);
84
for (int i = 0; i <
certRefs
.length; i++) {
85
if (
certRefs
[i] == 0) {
88
certs.add(new OpenSSLX509CRL(
certRefs
[i]));
113
final long[]
certRefs
;
115
certRefs
= NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
123
final List<OpenSSLX509CRL> certs = new ArrayList<OpenSSLX509CRL>(
certRefs
.length);
124
for (int i = 0; i <
certRefs
.length; i++)
[
all
...]
OpenSSLX509Certificate.java
90
final long[]
certRefs
;
92
certRefs
= NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CERTS);
99
if (
certRefs
== null) {
104
certRefs
.length);
105
for (int i = 0; i <
certRefs
.length; i++) {
106
if (
certRefs
[i] == 0) {
109
certs.add(new OpenSSLX509Certificate(
certRefs
[i]));
137
final long[]
certRefs
;
139
certRefs
= NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
148
certRefs
.length)
[
all
...]
Completed in 100 milliseconds