Home
last modified time | relevance | path

Searched refs:ParsingException (Results 1 – 25 of 26) sorted by relevance

12

/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLX509CertificateFactory.java50 static class ParsingException extends Exception { class in OpenSSLX509CertificateFactory
53 ParsingException(String message) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
57 ParsingException(Exception cause) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
61 ParsingException(String message, Exception cause) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
72 T generateItem(InputStream inStream) throws ParsingException { in generateItem()
74 throw new ParsingException("inStream == null"); in generateItem()
89 throw new ParsingException("inStream is empty"); in generateItem()
122 throw new ParsingException(e); in generateItem()
127 throws ParsingException { in generateItems()
129 throw new ParsingException("inStream == null"); in generateItems()
[all …]
DOpenSSLX509CRL.java45 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
55 private OpenSSLX509CRL(long ctx) throws ParsingException { in OpenSSLX509CRL()
64 static Date toDate(long asn1time) throws ParsingException { in toDate()
71 static OpenSSLX509CRL fromX509DerInputStream(InputStream is) throws ParsingException { in fromX509DerInputStream()
81 throw new ParsingException(e); in fromX509DerInputStream()
88 throws ParsingException { in fromPkcs7DerInputStream()
95 throw new ParsingException(e); in fromPkcs7DerInputStream()
110 static OpenSSLX509CRL fromX509PemInputStream(InputStream is) throws ParsingException { in fromX509PemInputStream()
120 throw new ParsingException(e); in fromX509PemInputStream()
127 throws ParsingException { in fromPkcs7PemInputStream()
[all …]
DOpenSSLX509Certificate.java53 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
70 OpenSSLX509Certificate(long ctx) throws ParsingException { in OpenSSLX509Certificate()
85 private static Date toDate(long asn1time) throws ParsingException { in toDate()
93 throws ParsingException { in fromX509DerInputStream()
104 throw new ParsingException(e); in fromX509DerInputStream()
114 } catch (ParsingException e) { in fromX509Der()
120 throws ParsingException { in fromPkcs7DerInputStream()
128 throw new ParsingException(e); in fromPkcs7DerInputStream()
150 throws ParsingException { in fromX509PemInputStream()
161 throw new ParsingException(e); in fromX509PemInputStream()
[all …]
DOpenSSLX509CertPath.java34 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
180 } catch (ParsingException e) { in fromPkiPathEncoding()
210 throw new ParsingException("inStream is empty"); in fromPkcs7Encoding()
DOpenSSLX509CRLEntry.java28 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
37 OpenSSLX509CRLEntry(long ctx) throws ParsingException { in OpenSSLX509CRLEntry()
DOpenSSLKey.java31 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
83 } catch (ParsingException e) { in fromPrivateKey()
191 } catch (ParsingException e) { in fromKeyMaterial()
DOpenSSLECPublicKey.java30 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
163 } catch (ParsingException e) { in readObject()
DOpenSSLECPrivateKey.java34 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
238 } catch (ParsingException e) { in readObject()
DNativeCrypto.java45 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
106 static native long EVP_parse_private_key(byte[] data) throws ParsingException; in EVP_parse_private_key()
110 static native long EVP_parse_public_key(byte[] data) throws ParsingException; in EVP_parse_public_key()
415 static native long d2i_X509(byte[] encoded) throws ParsingException; in d2i_X509()
429 static native long[] ASN1_seq_unpack_X509_bio(long bioRef) throws ParsingException; in ASN1_seq_unpack_X509_bio()
500 static native long[] d2i_PKCS7_bio(long bioCtx, int which) throws ParsingException; in d2i_PKCS7_bio()
594 … static native void ASN1_TIME_to_Calendar(long asn1TimeCtx, Calendar cal) throws ParsingException; in ASN1_TIME_to_Calendar()
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLX509CertificateFactory.java47 static class ParsingException extends Exception { class in OpenSSLX509CertificateFactory
50 ParsingException(String message) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
54 ParsingException(Exception cause) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
58 ParsingException(String message, Exception cause) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
69 T generateItem(InputStream inStream) throws ParsingException { in generateItem()
71 throw new ParsingException("inStream == null"); in generateItem()
86 throw new ParsingException("inStream is empty"); in generateItem()
119 throw new ParsingException(e); in generateItem()
124 throws ParsingException { in generateItems()
126 throw new ParsingException("inStream == null"); in generateItems()
[all …]
DOpenSSLX509CRL.java44 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
54 private OpenSSLX509CRL(long ctx) throws ParsingException { in OpenSSLX509CRL()
63 static Date toDate(long asn1time) throws ParsingException { in toDate()
70 static OpenSSLX509CRL fromX509DerInputStream(InputStream is) throws ParsingException { in fromX509DerInputStream()
80 throw new ParsingException(e); in fromX509DerInputStream()
87 throws ParsingException { in fromPkcs7DerInputStream()
94 throw new ParsingException(e); in fromPkcs7DerInputStream()
109 static OpenSSLX509CRL fromX509PemInputStream(InputStream is) throws ParsingException { in fromX509PemInputStream()
119 throw new ParsingException(e); in fromX509PemInputStream()
126 throws ParsingException { in fromPkcs7PemInputStream()
[all …]
DOpenSSLX509Certificate.java52 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
67 OpenSSLX509Certificate(long ctx) throws ParsingException { in OpenSSLX509Certificate()
82 private static Date toDate(long asn1time) throws ParsingException { in toDate()
90 throws ParsingException { in fromX509DerInputStream()
101 throw new ParsingException(e); in fromX509DerInputStream()
111 } catch (ParsingException e) { in fromX509Der()
117 throws ParsingException { in fromPkcs7DerInputStream()
125 throw new ParsingException(e); in fromPkcs7DerInputStream()
146 throws ParsingException { in fromX509PemInputStream()
157 throw new ParsingException(e); in fromX509PemInputStream()
[all …]
DOpenSSLX509CertPath.java33 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
179 } catch (ParsingException e) { in fromPkiPathEncoding()
209 throw new ParsingException("inStream is empty"); in fromPkcs7Encoding()
DOpenSSLX509CRLEntry.java27 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
36 OpenSSLX509CRLEntry(long ctx) throws ParsingException { in OpenSSLX509CRLEntry()
DOpenSSLKey.java30 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
79 } catch (ParsingException e) { in fromPrivateKey()
187 } catch (ParsingException e) { in fromKeyMaterial()
DOpenSSLECPublicKey.java29 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
162 } catch (ParsingException e) { in readObject()
DNativeCrypto.java44 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
102 static native long EVP_parse_private_key(byte[] data) throws ParsingException; in EVP_parse_private_key()
106 static native long EVP_parse_public_key(byte[] data) throws ParsingException; in EVP_parse_public_key()
397 static native long d2i_X509(byte[] encoded) throws ParsingException; in d2i_X509()
408 static native long[] ASN1_seq_unpack_X509_bio(long bioRef) throws ParsingException; in ASN1_seq_unpack_X509_bio()
478 static native long[] d2i_PKCS7_bio(long bioCtx, int which) throws ParsingException; in d2i_PKCS7_bio()
558 … static native void ASN1_TIME_to_Calendar(long asn1TimeCtx, Calendar cal) throws ParsingException; in ASN1_TIME_to_Calendar()
DOpenSSLECPrivateKey.java33 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
237 } catch (ParsingException e) { in readObject()
/external/conscrypt/platform/src/main/java/org/conscrypt/
DInternalUtil.java23 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
35 } catch (ParsingException e) { in logKeyToPublicKey()
/external/conscrypt/repackaged/platform/src/main/java/com/android/org/conscrypt/
DInternalUtil.java24 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
37 } catch (ParsingException e) { in logKeyToPublicKey()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DOpenSSLX509CertificateTest.java31 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
92 throws FileNotFoundException, ParsingException { in loadTestCertificate()
DNativeCryptoTest.java81 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
758 } catch (ParsingException e) { in verifyCertificateChain()
3114 @Test(expected = ParsingException.class)
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DOpenSSLX509CertificateTest.java32 import com.android.org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
96 throws FileNotFoundException, ParsingException { in loadTestCertificate()
/external/owasp/sanitizer/lib/htmlparser-1.3/
Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM ...
Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM ...

12