Ludovic Courtès <l...@gnu.org> writes: >> + (home-page "https://github.com/haskell-crypto/cryptonite") >> + (synopsis "Cryptography primitives") >> + (description >> + "This package is a repository of cryptographic primitives for Haskell. >> +It strives to be a cryptographic kitchen sink that provides cryptography for >> +everyone. >> + >> +Supported symmetric ciphers: AES, DES, 3DES, Blowfish, Camellia, RC4, Salsa, >> +ChaCha; supported hash functions: SHA1, SHA2, SHA3, MD2, MD4, MD5, Keccak, >> +Skein, Ripemd, Tiger, Whirlpool, Blake2; MAC: HMAC, Poly1305; assymmetric >> +crypto: DSA, RSA, DH, ECDH, ECDSA, ECC, Curve25519, Ed25519; key derivation >> +functions: PBKDF2, Scrypt; cryptographic random number generation: system >> +entropy, deterministic random generator; data-related features: >> +@dfn{anti-forensic information splitter} (AFIS).") > > What about something like “It supports a wide range of symmetric > ciphers, cryptographic hash functions, public key algorithms, key > derivation numbers, cryptographic random number generators, and more.”?
I jumped over this comment as I applied the suggestions, so I updated the description in a follow-up commit. My apologies for the noise! >> + (home-page "http://github.com/vincenthz/hs-tls") >> + (synopsis >> + "TLS/SSL protocol native implementation (Server and Client)") >> + (description >> + "Native Haskell TLS and SSL protocol implementation for server and >> client. . This provides a high-level implementation of a sensitive security >> protocol, eliminating a common set of security issues through the use of the >> advanced type system, high level constructions and common Haskell features. >> . Currently implement the SSL3.0, TLS1.0, TLS1.1 and TLS1.2 protocol, and >> support RSA and Ephemeral (Elliptic curve and regular) Diffie Hellman key >> exchanges, and many extensions. . Some debug tools linked with tls, are >> available through the <http://hackage.haskell.org/package/tls-debug/>.") > > Could you wrap it, remove extra periods, and use @url? Ouch! This was completely untouched after importing from Hackage. I cleaned up the formatting of the package expression and also fixed the description. >> + (home-page "http://pandoc.org") >> + (synopsis "Conversion between markup formats") >> + (description >> + "Pandoc is a Haskell library for converting from one markup format to >> +another, and a command-line tool that uses this library. It can read >> markdown >> +and (subsets of) HTML, reStructuredText, LaTeX, DocBook, MediaWiki markup, >> +TWiki markup, Haddock markup, OPML, Emacs Org-Mode, txt2tags, Word Docx, >> ODT, >> +and Textile, and it can write Markdown, reStructuredText, XHTML, HTML 5, >> +LaTeX, ConTeXt, DocBook, OPML, OpenDocument, ODT, Word docx, RTF, MediaWiki, >> +DokuWiki, Textile, groff man pages, plain text, Emacs Org-Mode, AsciiDoc, >> +Haddock markup, EPUB (v2 and v3), FictionBook2, InDesign ICML, and several >> +kinds of HTML/javascript slide shows (S5, Slidy, Slideous, DZSlides, >> +reveal.js). >> + >> +Pandoc extends standard markdown syntax with footnotes, embedded LaTeX, >> +definition lists, tables, and other features. A compatibility mode is >> +provided for those who need a drop-in replacement for Markdown.pl. In >> +contrast to existing tools for converting markdown to HTML, which use regex >> +substitutions, pandoc has a modular design: it consists of a set of readers, >> +which parse text in a given format and produce a native representation of >> the >> +document, and a set of writers, which convert this native representation >> into >> +a target format. Thus, adding an input or output format requires only >> adding >> +a reader or writer.") > > Would be nice to keep just one third of it, notably by omitting the list > of supported formats. :-) I shortened it substantially and pushed the modified commits. Thank you for what must have been a very tedious review! ~~ Ricardo