Skip to content

Commit

Permalink
fix: rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cdmurph32 committed Feb 10, 2025
1 parent 950ad87 commit dd850a6
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 96 deletions.
141 changes: 60 additions & 81 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions internal/crypto/src/tests/raw_signature/signers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ fn ed25519() {
}

#[test]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")), wasm_bindgen_test)]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")),
// wasm_bindgen_test)]
fn ps256() {
let cert_chain = include_bytes!("../fixtures/raw_signature/ps256.pub");
let private_key = include_bytes!("../fixtures/raw_signature/ps256.priv");
Expand All @@ -135,7 +136,8 @@ fn ps256() {
}

#[test]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")), wasm_bindgen_test)]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")),
// wasm_bindgen_test)]
fn ps384() {
let cert_chain = include_bytes!("../fixtures/raw_signature/ps384.pub");
let private_key = include_bytes!("../fixtures/raw_signature/ps384.priv");
Expand All @@ -157,7 +159,8 @@ fn ps384() {
}

#[test]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")), wasm_bindgen_test)]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")),
// wasm_bindgen_test)]
fn ps512() {
let cert_chain = include_bytes!("../fixtures/raw_signature/ps512.pub");
let private_key = include_bytes!("../fixtures/raw_signature/ps512.priv");
Expand Down
4 changes: 2 additions & 2 deletions internal/crypto/src/tests/raw_signature/validators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ fn es384() {
}

#[test]
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")), wasm_bindgen_test)] // ES512 not
// implemented
// #[cfg_attr(all(target_arch = "wasm32", not(target_os = "wasi")),
// wasm_bindgen_test)] // ES512 not implemented
fn es512() {
let signature = include_bytes!("../fixtures/raw_signature/es512.raw_sig");
let pub_key = include_bytes!("../fixtures/raw_signature/es512.pub_key");
Expand Down
Loading

0 comments on commit dd850a6

Please sign in to comment.