aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffi/ffi_kdf.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add explicit int return type declarations on FFI lambdas.Jack Lloyd2017-12-281-5/+5
| | | | | | Sun Studio gives a strange warning about this. This probably doesn't help actually compile under Sun Studio. But it doesn't hurt to be explicit.
* Simplify ffi call overheadJack Lloyd2017-10-111-3/+2
| | | | Notable reductions in code size, stack size and function call overhead.
* Correct return value of botan_pk_op_verify_finishJack Lloyd2017-09-061-1/+1
| | | | | | | This function changed behavior in 0d403a3 see also GH #1187 Add new return code BOTAN_FFI_INVALID_VERIFIER and use it for both signature and bcrypt verification functions.
* More MSVC warnings fixesJack Lloyd2017-08-311-1/+1
|
* Fix various MSVC warningsJack Lloyd2017-08-311-1/+1
| | | | Based on VC2017 output
* Split up ffi.cpp into several filesJack Lloyd2017-07-311-0/+98
It was getting pretty big and would get worse over time, eg whenver I get around to adding TLS support.