Searched refs:certRefs (Results 1 - 10 of 10) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLX509CertPath.java99 final long[] certRefs = new long[certs.length];
110 certRefs[j] = certs[j].getContext();
115 return NativeCrypto.ASN1_seq_pack_X509(certRefs);
117 return NativeCrypto.i2d_PKCS7(certRefs);
151 final long[] certRefs;
153 certRefs = NativeCrypto.ASN1_seq_unpack_X509_bio(bis.getBioContext());
166 if (certRefs == null) {
171 new ArrayList<OpenSSLX509Certificate>(certRefs.length);
172 for (int i = certRefs.length - 1; i >= 0; i--) {
173 if (certRefs[
[all...]
H A DOpenSSLX509CRL.java76 final long[] certRefs;
78 certRefs = NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CRLS);
85 final List<OpenSSLX509CRL> certs = new ArrayList<OpenSSLX509CRL>(certRefs.length);
86 for (int i = 0; i < certRefs.length; i++) {
87 if (certRefs[i] == 0) {
90 certs.add(new OpenSSLX509CRL(certRefs[i]));
115 final long[] certRefs;
117 certRefs = NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
125 final List<OpenSSLX509CRL> certs = new ArrayList<OpenSSLX509CRL>(certRefs.length);
126 for (int i = 0; i < certRefs
[all...]
H A DOpenSSLX509Certificate.java102 final long[] certRefs;
104 certRefs = NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CERTS);
111 if (certRefs == null) {
116 certRefs.length);
117 for (int i = 0; i < certRefs.length; i++) {
118 if (certRefs[i] == 0) {
121 certs.add(new OpenSSLX509Certificate(certRefs[i]));
149 final long[] certRefs;
151 certRefs = NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
160 certRefs
[all...]
H A DConscryptFileDescriptorSocket.java382 public void verifyCertificateChain(long[] certRefs, String authMethod) argument
389 if (certRefs == null || certRefs.length == 0) {
393 OpenSSLX509Certificate.createCertChain(certRefs);
H A DConscryptEngine.java1561 public void verifyCertificateChain(long[] certRefs, String authMethod) argument
1568 if (certRefs == null || certRefs.length == 0) {
1572 OpenSSLX509Certificate.createCertChain(certRefs);
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
H A DNativeCryptoTest.java174 final long[] certRefs = new long[certs.length];
176 certRefs[i] = certs[i].getContext();
178 return certRefs;
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 729 milliseconds