Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLX509CertificateFactory.java49 static class ParsingException extends Exception { class in OpenSSLX509CertificateFactory
52 ParsingException(String message) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
56 ParsingException(Exception cause) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
60 ParsingException(String message, Exception cause) { in ParsingException() method in OpenSSLX509CertificateFactory.ParsingException
71 T generateItem(InputStream inStream) throws ParsingException { in generateItem()
73 throw new ParsingException("inStream == null"); in generateItem()
88 throw new ParsingException("inStream is empty"); in generateItem()
121 throw new ParsingException(e); in generateItem()
126 throws ParsingException { in generateItems()
128 throw new ParsingException("inStream == null"); in generateItems()
[all …]
DOpenSSLX509CRL.java44 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
56 static OpenSSLX509CRL fromX509DerInputStream(InputStream is) throws ParsingException { in fromX509DerInputStream()
66 throw new ParsingException(e); in fromX509DerInputStream()
73 throws ParsingException { in fromPkcs7DerInputStream()
80 throw new ParsingException(e); in fromPkcs7DerInputStream()
95 static OpenSSLX509CRL fromX509PemInputStream(InputStream is) throws ParsingException { in fromX509PemInputStream()
105 throw new ParsingException(e); in fromX509PemInputStream()
112 throws ParsingException { in fromPkcs7PemInputStream()
120 throw new ParsingException(e); in fromPkcs7PemInputStream()
DOpenSSLX509Certificate.java52 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
71 throws ParsingException { in fromX509DerInputStream()
82 throw new ParsingException(e); in fromX509DerInputStream()
92 } catch (ParsingException e) { in fromX509Der()
98 throws ParsingException { in fromPkcs7DerInputStream()
106 throw new ParsingException(e); in fromPkcs7DerInputStream()
127 throws ParsingException { in fromX509PemInputStream()
138 throw new ParsingException(e); in fromX509PemInputStream()
145 throws ParsingException { in fromPkcs7PemInputStream()
154 throw new ParsingException(e); in fromPkcs7PemInputStream()
DOpenSSLX509CertPath.java32 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
204 throw new ParsingException("inStream is empty"); in fromPkcs7Encoding()
DNativeCrypto.java42 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
361 static native long d2i_X509(byte[] encoded) throws ParsingException; in d2i_X509()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DOpenSSLX509CertificateTest.java31 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
92 throws FileNotFoundException, ParsingException { in loadTestCertificate()
DNativeCryptoTest.java74 import org.conscrypt.OpenSSLX509CertificateFactory.ParsingException;
3040 @Test(expected = ParsingException.class)