History log of /external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
e8eb8aedabdce4de1a870de9160a8d2ab367c4bb 18-Jan-2016 Sergio Giro <sgiro@google.com> OpenSSLX509CertPath: add null check in fromEncoding(InputStream)

Note the null check was in fromEncoding(InputStream, String)
already.

Bug: 25926066
Change-Id: Ic4a0d514c6b8e6d8af349a8202f26854f6975cd6
/external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java
66537ee0121bdd14737191d14927da223f0809ee 19-May-2015 Adam Langley <agl@google.com> Add isFinite flag to OpenSSLBIOInputStream.

The BIO created by OpenSSLBIOInputStream currently returns -1 and sets
the retry flag when read() returns zero on the underlying InputStream.
This is correct for “infinite” streams (like a socket), but isn't
correct for streams that have a definitive EOF.

This change adds a flag to OpenSSLBIOInputStream so that cases where the
input is finite (i.e. when parsing a PKCS#7 or X.509 block) can
correctly return 0 at EOF from |BIO_read|.

Bug: 21396526
Bug: 21209493
Change-Id: Iaad5845621ab8b89b42d5d3ca8e67e297278ca55
/external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java
3e46e4ee56c8e37158f46941dedd5b436d724baa 23-May-2014 Kenny Root <kroot@google.com> Unbundle: hacks to let Conscrypt compile standalone

This is the first pass at getting Conscrypt to compile standalone. It
works fine in apps currently. There are a few TODOs to fix.

Change-Id: I9b43ba12c55e04c8897ccacf38979ca671a55a26
/external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java
77708c039b98c206f101623e114d1a7fdb89c738 05-May-2014 Kenny Root <kroot@google.com> Use specific Charset for encoding

Without using a specific Charset, it will call System.getProperty to
find the current locale. We only care about getting the bytes for
US-ASCII so explicitly ask for that instead.

Change-Id: I6902b59ccb8a13a8977b828c099ad493e4f17e5c
/external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java
19fdf1af6bada9ebf4820839780d8713ac3824fa 10-Apr-2014 Kenny Root <kroot@google.com> Convert calls to BIO_free to BIO_free_all

If we have a chain of BIO, we want to free the entire chain. Otherwise,
we might accidentally leave references sitting around. This shouldn't
matter for our current use-case, but might help in the future.

Change-Id: I586937629e1e4f2e80b5feefe2f49a85e8a31d31
/external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java
860d2707ce126ef8f66e3eac7ceeab6d24218cd8 24-Apr-2013 Kenny Root <kroot@google.com> Move JSSE to new package

To help with shipping the JSSE with apps that want to bundle it, move
it to a new package so that the tangles in other parts of the library
can be untangled.

Change-Id: I810b6861388635301e28aee5b9b47b8e6b35b430
/external/conscrypt/src/main/java/org/conscrypt/OpenSSLX509CertPath.java