this repo has no description
0
fork

Configure Feed

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

Merge pull request #26562 from reynir/release-webauthn-v0.2.0

[new release] webauthn (0.2.0)

authored by

Calascibetta Romain and committed by
GitHub
2318eb9d 945c6fa3

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