Skip to content

Commit

Permalink
still need to fix the test as the message in the buffer is larger tha…
Browse files Browse the repository at this point in the history
…n the runtime allocation size
  • Loading branch information
jgutierrezre committed Oct 10, 2024
1 parent 7aaa06f commit bb34b85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
name = "webauthn_verifier"
version = "0.1.0"
edition = "2021"
resolver = "2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
coset = "0.3.8"
p256 = "0.13.2"
passkey = "0.3.0"
sha2 = "0.10.8"
coset = { version = "0.3.0", default-features = false }
p256 = { version = "0.13.2", default-features = false }
passkey = { version = "0.3.0", default-features = false }
sha2 = { version = "0.10.8", default-features = false }

[dev-dependencies]
rand = "0.8.5"
rand = "0.8.5"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![no_std]
#![cfg_attr(not(test), no_std)]
//! Verifies a WebAuthn response signature.
//!
//! This function validates the signature of a WebAuthn authentication response by:
Expand Down

0 comments on commit bb34b85

Please sign in to comment.