summaryrefslogtreecommitdiffstats
path: root/openssl/src/main/java
Commit message (Collapse)AuthorAgeFilesLines
* Remove NativeBN_bn2twosComp.Elliott Hughes2009-09-101-3/+0
| | | | | | | | | | | | | | | | NativeBN_bn2twosComp doesn't do what it claims to: it's an exact copy of NativeBN_BN_bn2bin (observe which OpenSSL BN_ function it calls!), and -- from the OpenSSL documentation -- that function "converts the absolute value of [its argument] into big-endian form". OpenSSL doesn't actually sport any appropriate function to call here, but luckily this code isn't called anywhere, and so can be removed. (BigInteger.toByteArray -- the most likely caller of this code -- seems to do the right thing, using Java code to make a big-endian two's-complement byte[]. Likewise, the conversion from a big-endian two's-complement byte[] for the corresponding BigInteger constructor looks right too, using native code to twiddle the bits itself.)
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-0/+184
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-184/+0
|
* Initial ContributionThe Android Open Source Project2008-10-211-0/+184