this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25870 from hannesm/release-tls-v0.17.5

[new release] tls (5 packages) (0.17.5)

authored by

Raphaël Proust and committed by
GitHub
0dc68a8b c1bf247e

+253
+47
packages/tls-async/tls-async.0.17.5/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://github.com/mirleft/ocaml-tls" 3 + dev-repo: "git+https://github.com/mirleft/ocaml-tls.git" 4 + bug-reports: "https://github.com/mirleft/ocaml-tls/issues" 5 + doc: "https://mirleft.github.io/ocaml-tls/doc" 6 + maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"] 7 + license: "BSD-2-Clause" 8 + 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + 15 + depends: [ 16 + "ocaml" {>= "4.08.0"} 17 + "dune" {>= "3.0"} 18 + "tls" {= version} 19 + "x509" {>= "0.14.0"} 20 + "ptime" {>= "0.8.1"} 21 + "async" {>= "v0.16"} 22 + "async_unix" {>= "v0.16"} 23 + "core" {>= "v0.16"} 24 + "cstruct-async" 25 + "ppx_jane" {>= "v0.16"} 26 + "mirage-crypto-rng-async" 27 + ] 28 + tags: [ "org:mirage"] 29 + synopsis: "Transport Layer Security purely in OCaml, Async layer" 30 + description: """ 31 + Tls-async provides Async-friendly tls bindings 32 + """ 33 + authors: [ 34 + "David Kaloper <david@numm.org>" 35 + "Hannes Mehnert <hannes@mehnert.org>" 36 + "Eric Ebinger <github@eric.theebingers.com>" 37 + "Calascibetta Romain <romain.calascibetta@gmail.com>" 38 + ] 39 + url { 40 + src: 41 + "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.5/tls-0.17.5.tbz" 42 + checksum: [ 43 + "sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819" 44 + "sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9" 45 + ] 46 + } 47 + x-commit-hash: "c493430923c94aac1eaf84e2cebb80013403630c"
+55
packages/tls-eio/tls-eio.0.17.5/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://github.com/mirleft/ocaml-tls" 3 + dev-repo: "git+https://github.com/mirleft/ocaml-tls.git" 4 + bug-reports: "https://github.com/mirleft/ocaml-tls/issues" 5 + doc: "https://mirleft.github.io/ocaml-tls/doc" 6 + authors: ["Thomas Leonard"] 7 + maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"] 8 + license: "BSD-2-Clause" 9 + 10 + build: [ 11 + ["dune" "subst"] {dev} 12 + ["dune" "build" "-p" name "-j" jobs] 13 + ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "5.0.0"} 18 + "dune" {>= "3.0"} 19 + "tls" {= version} 20 + "mirage-crypto-rng" {>= "0.11.2"} 21 + "mirage-crypto-rng-eio" {>= "0.11.2" with-test} 22 + "x509" {>= "0.15.0"} 23 + "eio" {>= "0.12"} 24 + "eio_main" {>= "0.12" with-test} 25 + "mdx" {with-test} 26 + "crowbar" {>= "0.2.1" with-test} 27 + "logs" {>= "0.7.0" with-test} 28 + "ptime" {>= "1.0.0"} 29 + ] 30 + tags: [ "org:mirage"] 31 + synopsis: "Transport Layer Security purely in OCaml - Eio" 32 + description: """ 33 + Transport Layer Security (TLS) is probably the most widely deployed security 34 + protocol on the Internet. It provides communication privacy to prevent 35 + eavesdropping, tampering, and message forgery. Furthermore, it optionally 36 + provides authentication of the involved endpoints. TLS is commonly deployed for 37 + securing web services ([HTTPS](http://tools.ietf.org/html/rfc2818)), emails, 38 + virtual private networks, and wireless networks. 39 + 40 + TLS uses asymmetric cryptography to exchange a symmetric key, and optionally 41 + authenticate (using X.509) either or both endpoints. It provides algorithmic 42 + agility, which means that the key exchange method, symmetric encryption 43 + algorithm, and hash algorithm are negotiated. 44 + 45 + Read [further](https://nqsb.io) and our [Usenix Security 2015 paper](https://usenix15.nqsb.io). 46 + """ 47 + url { 48 + src: 49 + "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.5/tls-0.17.5.tbz" 50 + checksum: [ 51 + "sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819" 52 + "sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9" 53 + ] 54 + } 55 + x-commit-hash: "c493430923c94aac1eaf84e2cebb80013403630c"
+43
packages/tls-lwt/tls-lwt.0.17.5/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://github.com/mirleft/ocaml-tls" 3 + dev-repo: "git+https://github.com/mirleft/ocaml-tls.git" 4 + bug-reports: "https://github.com/mirleft/ocaml-tls/issues" 5 + doc: "https://mirleft.github.io/ocaml-tls/doc" 6 + maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"] 7 + license: "BSD-2-Clause" 8 + 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + 15 + depends: [ 16 + "ocaml" {>= "4.08.0"} 17 + "dune" {>= "3.0"} 18 + "tls" {= version} 19 + "mirage-crypto-rng-lwt" {>= "0.11.0"} 20 + "x509" {>= "0.15.0"} 21 + "lwt" {>= "5.7.0"} 22 + "cmdliner" {>= "1.1.0"} 23 + "ptime" {>= "0.8.1"} 24 + "randomconv" {with-test & < "0.2.0"} 25 + ] 26 + conflicts: [ "result" {< "1.5"} ] 27 + tags: [ "org:mirage"] 28 + synopsis: "Transport Layer Security purely in OCaml, Lwt layer" 29 + description: """ 30 + Tls-lwt provides an effectful Tls_lwt module to be used with Lwt. 31 + """ 32 + authors: [ 33 + "David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>" 34 + ] 35 + url { 36 + src: 37 + "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.5/tls-0.17.5.tbz" 38 + checksum: [ 39 + "sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819" 40 + "sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9" 41 + ] 42 + } 43 + x-commit-hash: "c493430923c94aac1eaf84e2cebb80013403630c"
+46
packages/tls-mirage/tls-mirage.0.17.5/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://github.com/mirleft/ocaml-tls" 3 + dev-repo: "git+https://github.com/mirleft/ocaml-tls.git" 4 + bug-reports: "https://github.com/mirleft/ocaml-tls/issues" 5 + doc: "https://mirleft.github.io/ocaml-tls/doc" 6 + maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"] 7 + license: "BSD-2-Clause" 8 + 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + 15 + depends: [ 16 + "ocaml" {>= "4.08.0"} 17 + "dune" {>= "3.0"} 18 + "tls" {= version} 19 + "x509" {>= "0.13.0"} 20 + "fmt" {>= "0.8.7"} 21 + "lwt" {>= "3.0.0"} 22 + "mirage-flow" {>= "4.0.0"} 23 + "mirage-kv" {>= "3.0.0"} 24 + "mirage-clock" {>= "3.0.0"} 25 + "ptime" {>= "0.8.1"} 26 + "mirage-crypto" 27 + "mirage-crypto-pk" 28 + ] 29 + tags: [ "org:mirage"] 30 + synopsis: "Transport Layer Security purely in OCaml, MirageOS layer" 31 + description: """ 32 + Tls-mirage provides an effectful FLOW module to be used in the MirageOS 33 + ecosystem. 34 + """ 35 + authors: [ 36 + "David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>" 37 + ] 38 + url { 39 + src: 40 + "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.5/tls-0.17.5.tbz" 41 + checksum: [ 42 + "sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819" 43 + "sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9" 44 + ] 45 + } 46 + x-commit-hash: "c493430923c94aac1eaf84e2cebb80013403630c"
+62
packages/tls/tls.0.17.5/opam
··· 1 + opam-version: "2.0" 2 + homepage: "https://github.com/mirleft/ocaml-tls" 3 + dev-repo: "git+https://github.com/mirleft/ocaml-tls.git" 4 + bug-reports: "https://github.com/mirleft/ocaml-tls/issues" 5 + doc: "https://mirleft.github.io/ocaml-tls/doc" 6 + maintainer: ["Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>"] 7 + license: "BSD-2-Clause" 8 + 9 + build: [ 10 + ["dune" "subst"] {dev} 11 + ["dune" "build" "-p" name "-j" jobs] 12 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 13 + ] 14 + 15 + depends: [ 16 + "ocaml" {>= "4.08.0"} 17 + "dune" {>= "3.0"} 18 + "cstruct" {>= "6.0.0"} 19 + "mirage-crypto" {>= "0.11.0"} 20 + "mirage-crypto-ec" {>= "0.10.0"} 21 + "mirage-crypto-pk" 22 + "mirage-crypto-rng" {>= "0.8.0"} 23 + "x509" {>= "0.15.0"} 24 + "domain-name" {>= "0.3.0"} 25 + "fmt" {>= "0.8.7"} 26 + "cstruct-unix" {with-test & >= "3.0.0"} 27 + "ounit2" {with-test & >= "2.2.0"} 28 + "hkdf" 29 + "logs" 30 + "ipaddr" 31 + "alcotest" {with-test} 32 + ] 33 + conflicts: [ "result" {< "1.5"} ] 34 + tags: [ "org:mirage"] 35 + synopsis: "Transport Layer Security purely in OCaml" 36 + description: """ 37 + Transport Layer Security (TLS) is probably the most widely deployed security 38 + protocol on the Internet. It provides communication privacy to prevent 39 + eavesdropping, tampering, and message forgery. Furthermore, it optionally 40 + provides authentication of the involved endpoints. TLS is commonly deployed for 41 + securing web services ([HTTPS](http://tools.ietf.org/html/rfc2818)), emails, 42 + virtual private networks, and wireless networks. 43 + 44 + TLS uses asymmetric cryptography to exchange a symmetric key, and optionally 45 + authenticate (using X.509) either or both endpoints. It provides algorithmic 46 + agility, which means that the key exchange method, symmetric encryption 47 + algorithm, and hash algorithm are negotiated. 48 + 49 + Read [further](https://nqsb.io) and our [Usenix Security 2015 paper](https://usenix15.nqsb.io). 50 + """ 51 + authors: [ 52 + "David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>" 53 + ] 54 + url { 55 + src: 56 + "https://github.com/mirleft/ocaml-tls/releases/download/v0.17.5/tls-0.17.5.tbz" 57 + checksum: [ 58 + "sha256=89108857bf3a6f85722925a8d4a3f59c291d638c0f2e2fc45f0fdaf892ae4819" 59 + "sha512=cd862d74ad20bb419896b50a7fc754b52d4cb29f996e396be216926205f6d7b24dda1cffcd0c81bc3bc2837da53451459a595d5132032fe1460a6776d893eff9" 60 + ] 61 + } 62 + x-commit-hash: "c493430923c94aac1eaf84e2cebb80013403630c"