Skip to content

Commit

Permalink
Disable fastpbkdf2 on win builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
adinapoli committed Dec 29, 2016
1 parent 89bd641 commit 0a838c0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ encrypted file format by Rob Napier.
# Current Supported Versions
* V3 - [Spec](https://github.com/RNCryptor/RNCryptor-Spec/blob/master/RNCryptor-Spec-v3.md)

# Requirements

The library uses by default a fast C layer to compute the PBKDF2, but that requires the
presence of the OpenSSL libraries on the target system. In case this is a too rigid
requirement, you can switch back to a pure (slower) Haskell implementation by
turning off the `fastpbkdf2` cabal flag.

# TODO
- [ ] Key-based test vectors
- [ ] Key-derivation test vectors
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ test_script:
- stack setup > nul
# The ugly echo "" hack is to avoid complaints about 0 being an invalid file
# descriptor
- echo "" | stack --no-terminal test
- echo "" | stack --no-terminal test --flag rncryptor:-fastpbkdf2

0 comments on commit 0a838c0

Please sign in to comment.