packages feed

crypto-keys-ssh-0.1.0.0: crypto-keys-ssh.cabal

cabal-version:       >=1.10
name:                crypto-keys-ssh
version:             0.1.0.0
license:             MIT
license-file:        LICENSE
author:              Brian McKenna
maintainer:          brian@brianmckenna.org
category:            Cryptography
build-type:          Simple
extra-source-files:  CHANGELOG.md
synopsis:            Like crypto-pubkey-openssh but not dependent on any specific crypto library
description:
  Just like <https://github.com/knsd/crypto-pubkey-openssh crypto-pubkey-openssh>
  but not dependent on crypto-pubkey-types nor any specific crypto library.

source-repository head
  type: git
  location: https://github.com/puffnfresh/crypto-keys-ssh.git

library
  exposed-modules:     Crypto.PubKey.SSH
  build-depends:       base >=4.10 && <4.14
                     , binary >=0.8 && <0.11
                     , bytestring >=0.10 && <0.11
                     , base64-bytestring >=1.0 && <1.1
  hs-source-dirs:      src
  default-language:    Haskell98