Popularity
1.2
Stable
Activity
0.0
Stable
2
1
0
Monthly Downloads: 8
Programming language: Haskell
License: MIT License
Tags:
Cryptography
Crypto
Latest version: v0.1.0.0
crypto-keys-ssh alternatives and similar packages
Based on the "crypto" category.
Alternatively, view crypto-keys-ssh alternatives based on common mentions on social networks and blogs.
-
crypto-api
Haskell generic interface (type classes) for cryptographic algorithms -
crypto-pubkey-types
Crypto Public Key algorithm generic types. -
crypto-pubkey
DEPRECATED - use cryptonite - Cryptographic public key related algorithms in haskell (RSA,DSA,DH,ElGamal) -
crypto-enigma
A Haskell Enigma machine simulator with rich display and machine state details. -
crypto-numbers
DEPRECATED - use cryptonite - Cryptographic number related function and algorithms -
crypto-random
DEPRECATED - use cryptonite - Cryptographic random class and entropy gatherer with safe API for haskell -
spritz
Implementation of the Spritz RC4-like stream cipher in Haskell -
crypto-classical
A Haskell library for using and attacking Classical Encryption Schemes. -
cryptoconditions
Interledger Crypto-Conditions in Haskell -
mcl
Bindings to mcl, a generic and fast pairing-based cryptography library -
crypto-random-effect
haskell library providing a random and securemem effect for extensible effects
Deliver Cleaner and Safer Code - Right in Your IDE of Choice!
SonarLint is a free and open source IDE extension that identifies and catches bugs and vulnerabilities as you code, directly in the IDE. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of crypto-keys-ssh or a related project?
README
crypto-keys-ssh
Just like crypto-pubkey-openssh but not dependent on crypto-pubkey-types nor any specific crypto library.
At the moment only supports public RSA keys.
Can be easily used with cryptonite like so:
import Crypto.PubKey.SSH (decodeSshPubKey)
import Crypto.PubKey.RSA (PublicKey (..))
import Data.ByteString.Lazy.Char8 as LBS
decodeSshPubKey PublicKey <$> LBS.readFile ".ssh/id_rsa.pub"