Popularity
6.9
Declining
Activity
0.0
Stable
7
3
11
Monthly Downloads: 23
Programming language: Haskell
License: MIT License
Latest version: v0.2.7
crypto-pubkey-openssh alternatives and similar packages
Based on the "crypto" category.
Alternatively, view crypto-pubkey-openssh 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-numbers
DEPRECATED - use cryptonite - Cryptographic number related function and algorithms -
crypto-enigma
A Haskell Enigma machine simulator with rich display and machine state details. -
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
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of crypto-pubkey-openssh or a related project?
README
crypto-pubkey-openssh 
OpenSSH keys decoder/encoder, example.
import System.Environment (getArgs)
import qualified Data.ByteString as B
import Crypto.PubKey.OpenSsh (decodePrivate)
main :: IO ()
main = do
fname <- fmap head getArgs
content <- B.readFile fname
case decodePrivate content of
Left e -> error e
Right key -> print key