this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/robur-coop/webauthn" 3dev-repo: "git+https://github.com/robur-coop/webauthn.git" 4bug-reports: "https://github.com/robur-coop/webauthn/issues" 5doc: "https://robur-coop.github.io/webauthn/doc" 6maintainer: [ "team@robur.coop" ] 7authors: [ "Reynir Björnsson <reynir@reynir.dk>" "Hannes Mehnert <hannes@mehnert.org>" ] 8license: "BSD-2-Clause" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14] 15 16conflicts: [ 17 "result" {< "1.5"} 18] 19 20depends: [ 21 "ocaml" {>= "4.08.0"} 22 "dune" {>= "2.7"} 23 "dream" {dev & >= "1.0.0~alpha2" & < "1.0.0~alpha4"} 24 "ppx_blob" {dev} 25 "cmdliner" {dev} 26 "logs" {dev} 27 "lwt" {dev} 28 "yojson" 29 "ppx_deriving_yojson" 30 "mirage-crypto-ec" {< "1.0.0"} 31 "mirage-crypto-rng" {< "1.0.0"} 32 "ocplib-endian" 33 "x509" {>= "0.13.0"} 34 "base64" {>= "3.1.0"} 35 "cstruct" {>= "6.0.0"} 36 "cbor" {>= "0.5"} 37] 38 39synopsis: "WebAuthn - authenticating users to services using public key cryptography" 40description: """ 41WebAuthn is a web standard published by the W3C. Its goal is to 42standardize an interfacefor authenticating users to web-based 43applications and services using public key cryptography. Modern web 44browsers support WebAuthn functionality. 45 46WebAuthn provides two funcitons: register and authenticate. Usually the 47public and private keypair is stored on an external token (Yuikey etc.) 48or part of the platform (TPM). After the public key is registered, it can 49be used to authenticate to the same service. 50 51This module does not preserve a database of registered public keys, their 52credential ID, usernames and pending challenges - instead this data must 53be stored by a client of this API in a database or other persistent 54storage. 55 56[Demo server](https://webauthn-demo.robur.coop) 57[WebAuthn specification at W3C](https://w3c.github.io/webauthn/) 58""" 59url { 60 src: 61 "https://github.com/robur-coop/webauthn/releases/download/v0.1.0/webauthn-0.1.0.tbz" 62 checksum: [ 63 "sha256=c9082576c49d34f49884c361afb5f856b82ff7066d1d6f3b3d03c41314449701" 64 "sha512=a7e9e41be396ce7bd4a201eac693be725827208d92fabd90201b23b7657599b6a5cd82592758db9e7d2d9401b5e17b8d19f6a4fc74a01deb9cb6c3bd26e99a51" 65 ] 66} 67x-commit-hash: "f58d2cfb51fcc66c4cb3d1b851ba29b5c05626b1"