Skip to content

Commit 47d8e6c

Browse files
committed
[new release] awa and awa-mirage (0.3.0)
CHANGES: * FEATURE server: propagate window-change message (mirage/awa-ssh#55 @reynir) * FEATURE server: implement ext-info and server-sig-algs extension (mirage/awa-ssh#56 @reynir) * FEATURE server: support RFC 4419 (group key exchanges) and NIST ECDH key exchanges, and X25519 (mirage/awa-ssh#63 mirage/awa-ssh#67 @hannesm) * FEATURE server: handle unknown public keys (instead of closing the connection, send a message back, allowing other public keys to be probeb) (mirage/awa-ssh#68 @reynir) * BUGFIX server: fix rekey (avoid allocating lots of timeout tasks (mirage/awa-ssh#58 @reynir) * BUGFIX server: filter advertised host key algorithms with used host key (mirage/awa-ssh#62 @hannesm) * server: use logs instead of printf (mirage/awa-ssh#69 @hannesm) * awa-lwt: drop package (unused, mirage/awa-ssh#61 @hannesm) * drop Driver module, embed into awa_test_server.ml (mirage/awa-ssh#64 @hannesm)
1 parent a02bfc9 commit 47d8e6c

File tree

2 files changed

+84
-0
lines changed
  • packages
    • awa-mirage/awa-mirage.0.3.0
    • awa/awa.0.3.0

2 files changed

+84
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
maintainer: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" "Reynir Björnsson <[email protected]>" "Romain Calascibetta <[email protected]>" "Pierre Alain <[email protected]>" ]
3+
authors: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" "Reynir Björnsson <[email protected]>" "Romain Calascibetta <[email protected]>" "Pierre Alain <[email protected]>" ]
4+
license: "ISC"
5+
homepage: "https://github.com/mirage/awa-ssh"
6+
bug-reports: "https://github.com/mirage/awa-ssh/issues"
7+
dev-repo: "git+https://github.com/mirage/awa-ssh.git"
8+
doc: "https://mirage.github.io/awa-ssh/api"
9+
10+
build: [
11+
["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
14+
]
15+
16+
depends: [
17+
"ocaml" {>= "4.08.0"}
18+
"dune" {>= "2.7"}
19+
"awa" {= version}
20+
"cstruct" {>= "6.0.0"}
21+
"mtime" {>= "1.0.0"}
22+
"lwt" {>= "5.3.0"}
23+
"mirage-time" {>= "2.0.0"}
24+
"duration" {>= "0.2.0"}
25+
"mirage-flow" {>= "2.0.0"}
26+
"mirage-clock" {>= "3.0.0"}
27+
"logs"
28+
]
29+
synopsis: "SSH implementation in OCaml"
30+
description: """The OpenSSH protocol implemented in OCaml."""
31+
url {
32+
src:
33+
"https://github.com/mirage/awa-ssh/releases/download/v0.3.0/awa-0.3.0.tbz"
34+
checksum: [
35+
"sha256=06d6d17929e700dfaed55cbadda7ced7285ea03aac211536ae2834cb5403b6ec"
36+
"sha512=7da1d86244fef433339ca7e091162d7556fee653d23d1bb03fffb84272d39c5c46987435d9242d79c15746fba6b1504b120279b56fd8dab6a01f8cd70ac2ab2b"
37+
]
38+
}
39+
x-commit-hash: "7f433100970d3767486eda22efd5555be42987aa"

packages/awa/awa.0.3.0/opam

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
maintainer: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" "Reynir Björnsson <[email protected]>" "Romain Calascibetta <[email protected]>" "Pierre Alain <[email protected]>" ]
3+
authors: [ "Christiano F. Haesbaert <[email protected]>" "Hannes Mehnert <[email protected]>" "Reynir Björnsson <[email protected]>" "Romain Calascibetta <[email protected]>" "Pierre Alain <[email protected]>" ]
4+
license: "ISC"
5+
homepage: "https://github.com/mirage/awa-ssh"
6+
bug-reports: "https://github.com/mirage/awa-ssh/issues"
7+
dev-repo: "git+https://github.com/mirage/awa-ssh.git"
8+
doc: "https://mirage.github.io/awa-ssh/api"
9+
10+
build: [
11+
["dune" "subst"] {dev}
12+
["dune" "build" "-p" name "-j" jobs]
13+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
14+
]
15+
16+
depends: [
17+
"ocaml" {>= "4.10.0"}
18+
"dune" {>= "2.7"}
19+
"mirage-crypto" {>= "0.8.1"}
20+
"mirage-crypto-rng" {>= "0.11.0"}
21+
"mirage-crypto-pk"
22+
"mirage-crypto-ec" {>= "0.10.0"}
23+
"x509" {>= "0.15.2"}
24+
"cstruct" {>= "6.0.0"}
25+
"cstruct-unix"
26+
"mtime" {>= "1.0.0"}
27+
"logs"
28+
"fmt"
29+
"cmdliner" {>= "1.1.0"}
30+
"base64" {>= "3.0.0"}
31+
"zarith"
32+
"eqaf" {>= "0.8"}
33+
]
34+
conflicts: [ "result" {< "1.5"} ]
35+
synopsis: "SSH implementation in OCaml"
36+
description: """The OpenSSH protocol implemented in OCaml."""
37+
url {
38+
src:
39+
"https://github.com/mirage/awa-ssh/releases/download/v0.3.0/awa-0.3.0.tbz"
40+
checksum: [
41+
"sha256=06d6d17929e700dfaed55cbadda7ced7285ea03aac211536ae2834cb5403b6ec"
42+
"sha512=7da1d86244fef433339ca7e091162d7556fee653d23d1bb03fffb84272d39c5c46987435d9242d79c15746fba6b1504b120279b56fd8dab6a01f8cd70ac2ab2b"
43+
]
44+
}
45+
x-commit-hash: "7f433100970d3767486eda22efd5555be42987aa"

0 commit comments

Comments
 (0)