Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2014-07-26Execute become-spongy.shRoberto Tyley
https://github.com/rtyley/spongycastle/blob/3040af/become-spongy.sh
2014-07-26Stop TLS testcases causing failure on JUnit constructor requirementsRoberto Tyley
If you run the Gradle build, you'd see TlsTestCase & DTLSTestCase cause a build failure: ``` junit.framework.AssertionFailedError: Class org.bouncycastle.crypto.tls.test.DTLSTestCase has no public constructor TestCase(String name) or TestCase() ``` The reason is that both these testcases actually have two-arg constructors (because they need a bunch of extra configuration data), so don't fit the normal no-arg or one-arg constructor requirement of classes extending `TestCase`. The fix used here is to employ JUnit 'parameterized tests', rather than a TestSuite: https://github.com/junit-team/junit/wiki/Parameterized-tests P.S. You can see also see the Gradle build failure in Travis CI here: https://travis-ci.org/rtyley/spongycastle/builds/29981411#L1052-L1056 (this is why BC needs https://github.com/bcgit/bc-java/pull/80 !)
2014-07-25RefactorPeter Dettman
2014-07-25Add cofactor validation after point decompressionPeter Dettman
2014-07-24Add getCipherType method and refactorPeter Dettman
2014-07-24Add more variations of check/isValidPeter Dettman
2014-07-24Javadoc fixPeter Dettman
2014-07-24Apply low-hamming-weight NAF check for more generatorsPeter Dettman
2014-07-23Clean up a few thingsPeter Dettman
2014-07-23Merge remote-tracking branch 'origin/master'David Hook
2014-07-23Earlier JDK compatibility updatesDavid Hook
2014-07-23Remove unnecessary static referencesPeter Dettman
2014-07-23Fix argument typePeter Dettman
2014-07-23Fix javadocPeter Dettman
2014-07-23Remove unnecessary static referencesPeter Dettman
2014-07-23Minor optimization for common case of cofactor==1Peter Dettman
2014-07-22draft-ietf-tls-encrypt-then-mac-033 updatesPeter Dettman
2014-07-22Add utility methods for classifying cipher suitesPeter Dettman
2014-07-22Add automatic EC point validation for decoded points and for multiplier outputs.Peter Dettman
2014-07-22Merge branch 'master' of git.bouncycastle.org:bc-javaPeter Dettman
2014-07-22J2ME compatibility updatesDavid Hook
2014-07-22J2ME compatibility updatesDavid Hook
2014-07-22Add strict checking for EC point formatsPeter Dettman
2014-07-22Merge remote-tracking branch 'origin/master'David Hook
2014-07-22Merge branch 'master' of git.bouncycastle.org:bc-javaPeter Dettman
2014-07-22Fix CertificateRequest encoding (of certificate_authorities) and addPeter Dettman
coverage in D/TLS tests
2014-07-22J2ME compatibility updatesDavid Hook
2014-07-22J2ME compatibility updatesDavid Hook
2014-07-21Merge remote-tracking branch 'origin/master'David Hook
2014-07-21compatibility updatesDavid Hook
2014-07-21Reduce the number of test casesPeter Dettman
2014-07-21portability updates, updated version numberDavid Hook
2014-07-21portability updatesDavid Hook
2014-07-17BJA-467 added support for passing in a specific locale to help with date ↵David Hook
interpretation.
2014-07-17BJA-467 added support for passing in a specific locale to help with date ↵David Hook
interpretation.
2014-07-17BJA-467 added support for passing in a specific locale to help with date ↵David Hook
interpretation.
2014-07-02Use higher precision approximations for g1/g2 (GLV Type B)Peter Dettman
2014-07-02Asterisk the default coordinates for each curvePeter Dettman
2014-07-02Final work for OCB modePeter Dettman
- Change javadoc to reflect draft has become RFC 7253 - Implement key reuse - Add randomized tests and key reuse tests
2014-07-02Refactor GCMTestPeter Dettman
2014-06-30Merge branch 'master' of git.bouncycastle.org:bc-javaPeter Dettman
2014-06-30Add test coverage for ECAlgorithms classPeter Dettman
2014-06-28updateDavid Hook
2014-06-271.4 fixes.David Hook
2014-06-23fixed retreatCounter added bounds check.David Hook
2014-06-23fixed decrement counter.David Hook
2014-06-23JavaDocDavid Hook
2014-06-22fixed formattingDavid Hook
2014-06-21Add the client-version check part of PRPeter Dettman
https://github.com/bcgit/bc-java/pull/67/, after review.
2014-06-21Reverse the sense of 'forEncryption'Peter Dettman
Remove debug output from test Improve SecureRandom usage