OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:certRefs
(Results
1 - 7
of
7
) sorted by null
/external/conscrypt/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java
94
final long[]
certRefs
= new long[certs.length];
105
certRefs
[j] = certs[j].getContext();
110
return NativeCrypto.ASN1_seq_pack_X509(
certRefs
);
112
return NativeCrypto.i2d_PKCS7(
certRefs
);
146
final long[]
certRefs
;
148
certRefs
= NativeCrypto.ASN1_seq_unpack_X509_bio(bis.getBioContext());
161
if (
certRefs
== null) {
166
new ArrayList<OpenSSLX509Certificate>(
certRefs
.length);
167
for (int i =
certRefs
.length - 1; i >= 0; i--) {
168
if (
certRefs
[i] == 0)
[
all
...]
OpenSSLX509CRL.java
73
final long[]
certRefs
;
75
certRefs
= NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CRLS);
82
final List<OpenSSLX509CRL> certs = new ArrayList<OpenSSLX509CRL>(
certRefs
.length);
83
for (int i = 0; i <
certRefs
.length; i++) {
84
if (
certRefs
[i] == 0) {
87
certs.add(new OpenSSLX509CRL(
certRefs
[i]));
112
final long[]
certRefs
;
114
certRefs
= NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
122
final List<OpenSSLX509CRL> certs = new ArrayList<OpenSSLX509CRL>(
certRefs
.length);
123
for (int i = 0; i <
certRefs
.length; i++)
[
all
...]
OpenSSLX509Certificate.java
92
final long[]
certRefs
;
94
certRefs
= NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CERTS);
101
if (
certRefs
== null) {
106
certRefs
.length);
107
for (int i = 0; i <
certRefs
.length; i++) {
108
if (
certRefs
[i] == 0) {
111
certs.add(new OpenSSLX509Certificate(
certRefs
[i]));
139
final long[]
certRefs
;
141
certRefs
= NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
150
certRefs
.length)
[
all
...]
OpenSSLEngineImpl.java
645
public void verifyCertificateChain(long sslSessionNativePtr, long[]
certRefs
,
652
if (
certRefs
== null ||
certRefs
.length == 0) {
655
OpenSSLX509Certificate[] peerCertChain = new OpenSSLX509Certificate[
certRefs
.length];
656
for (int i = 0; i <
certRefs
.length; i++) {
657
peerCertChain[i] = new OpenSSLX509Certificate(
certRefs
[i]);
OpenSSLSocketImpl.java
575
public void verifyCertificateChain(long sslSessionNativePtr, long[]
certRefs
, String authMethod)
582
if (
certRefs
== null ||
certRefs
.length == 0) {
585
OpenSSLX509Certificate[] peerCertChain = new OpenSSLX509Certificate[
certRefs
.length];
586
for (int i = 0; i <
certRefs
.length; i++) {
587
peerCertChain[i] = new OpenSSLX509Certificate(
certRefs
[i]);
[
all
...]
/external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java
155
final long[]
certRefs
= new long[certs.length];
157
certRefs
[i] = certs[i].getContext();
159
return
certRefs
;
[
all
...]
/prebuilts/sdk/tools/lib/
signapk.jar
Completed in 305 milliseconds