Popularity
1.9
Growing
Activity
2.8
Stable
2
2
0
Monthly Downloads: 1
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-pubkey
DISCONTINUED. DEPRECATED - use cryptonite - Cryptographic public key related algorithms in haskell (RSA,DSA,DH,ElGamal) -
crypto-numbers
DISCONTINUED. DEPRECATED - use cryptonite - Cryptographic number related function and algorithms -
crypto-random
DISCONTINUED. DEPRECATED - use cryptonite - Cryptographic random class and entropy gatherer with safe API for haskell
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

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"