aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/bn.rs
Commit message (Collapse)AuthorAgeFilesLines
* Overhaul openssl cfgsSteven Fackler2018-05-201-28/+29
| | | | Also expose hostname verification on libressl
* Fix docsSteven Fackler2018-01-061-2/+3
|
* Move to associated constsSteven Fackler2017-12-251-17/+19
|
* Upgrade foreign-typesSteven Fackler2017-11-261-6/+0
| | | | | foreign-types 0.3 and 0.2 now share the same types and traits, so this is backwards compatible.
* Revert "Update foreign-types to 0.3"Steven Fackler2017-11-211-0/+6
|
* Update foreign-types to 0.3Anthony Ramine2017-11-211-6/+0
|
* Added a macro that wraps foreign type, and impl Send and Sync for both,Paul Florence2017-11-101-2/+2
| | | | | the borrowed type and the owned one. Replaced all invocation of `foreign_type` by `foreign_type_and_impl_send_sync`.
* Merge pull request #744 from AndyGauge/doc-bnSteven Fackler2017-10-071-21/+369
|\ | | | | Doc BigNum
| * Describe return values of groups.Andy Gauge2017-10-041-16/+24
| |
| * Finished BigNum documentationAndy Gauge2017-10-031-16/+266
| |
| * removed deny missing docsAndy Gauge2017-09-291-1/+0
| |
| * WIP BigNum function documentationAndy Gauge2017-09-291-14/+102
| |
| * Began bn module documenationAndy Gauge2017-09-291-0/+3
| |
* | Convert try! usage to ?johnthagen2017-10-031-5/+5
|/
* Init in bn_ctx constructorSteven Fackler2017-07-301-1/+4
|
* RustfmtSteven Fackler2017-07-151-139/+231
|
* Fix order of arguments to BN_rand_range and BN_pseudo_rand_rangeChris Cole2017-03-251-2/+20
|
* Fix Shr trait impl for BigNum: was using shlChris Cole2017-03-011-2/+10
|
* Merge remote-tracking branch 'origin/master' into x509-builderSteven Fackler2017-02-111-10/+96
|\
| * Switch to foreign_typesSteven Fackler2017-02-031-3/+15
| |
| * OCSP functionalitySteven Fackler2017-01-141-7/+7
| |
| * Add a missing initSteven Fackler2016-11-121-0/+1
| |
| * Add constructors for various standard primesSteven Fackler2016-11-121-0/+73
| |
* | Start on an X509BuilderSteven Fackler2016-11-061-0/+9
|/
* Re-adjust BigNum APISteven Fackler2016-11-051-196/+236
|
* RustfmtSteven Fackler2016-11-051-13/+3
|
* Get rid of RefSteven Fackler2016-11-041-89/+89
| | | | | There's unfortunately a rustdoc bug that causes all methods implemented for any Ref<T> to be inlined in the deref methods section :(
* Clean up some bignum APIsSteven Fackler2016-11-031-67/+68
|
* Rename BnCtxSteven Fackler2016-11-031-10/+10
|
* Don't clear BigNums in destructorSteven Fackler2016-11-011-1/+8
| | | | Instead add a clear method.
* Fix docsSteven Fackler2016-11-011-1/+1
|
* Update bignumSteven Fackler2016-10-311-139/+92
|
* Add a generic Ref typeSteven Fackler2016-10-311-14/+1
|
* RustfmtSteven Fackler2016-10-301-92/+50
|
* Don't double-allocate stringsSteven Fackler2016-10-261-14/+9
|
* Update BigNumRefSteven Fackler2016-10-211-85/+89
|
* Finish BN overhaulSteven Fackler2016-10-161-289/+191
|
* Finish error overhaulSteven Fackler2016-10-161-16/+19
|
* Start on error + BN refactorSteven Fackler2016-10-161-0/+1003