History log of /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/IndexedPKIXParameters.java
Revision Date Author Comments
72e93344b4d1ffc71e9c832ec23de0657e5b04a5 13-Nov-2009 Jean-Baptiste Queru <jbq@google.com> eclair snapshot
08d5aa17f1366797bdb51e129896df8fc58c7e54 21-Sep-2009 Bob Lee <crazybob@crazybob.org> Replaced an O(N) algorithm with an O(1) algorithm. This shaves off 2/3 of the server cert checking time or ~200ms on Sapphire. This is in preparation for tripling the number of certs in an upcoming change.
dfd0afbcb08b871e224a28ecb4ed427a7693545c 26-Aug-2009 Bob Lee <crazybob@google.com> Each time we start an SSL session, we have to find the trust anchor. This used to be an O(N) operation. If the trust anchor we're looking for was close to N, finding it could take a couple seconds. This change makes the operation O(1).