-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate crypto-aes and cprng-aes to cryptonite.
crypto-aes's encryption now fail on my machine with Illegal Instruction errors, and the package has been deprecated in favor of cryptonite for years, so migrate to that. cprng-aes is an indirect dependency on crypto-aes. cryptonite doesn't offer an AES-based CPRNG, but its ChaCha-based one has the closest interface.
- Loading branch information
Showing
2 changed files
with
52 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This requires
base >= 4.8
, see https://hackage.haskell.org/package/base-4.18.0.0/docs/Data-Bifunctor.html#v:firstPresumably, importing
first
fromControl.Arrow
instead would be backwards compatible.