Skip to content

Commit

Permalink
add identity_ecdsa_verifier to workspace, add license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
wulfraem committed Apr 23, 2024
1 parent ad31b9a commit 4992ca9
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ members = [
"identity_verification",
"identity_stronghold",
"identity_jose",
"identity_ecdsa_verifier",
"identity_eddsa_verifier",
"examples",
]
Expand Down
3 changes: 3 additions & 0 deletions identity_ecdsa_verifier/src/ecdsa_jws_verifier.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use identity_verification::jws::JwsAlgorithm;
use identity_verification::jws::JwsVerifier;
use identity_verification::jws::SignatureVerificationErrorKind;
Expand Down
3 changes: 3 additions & 0 deletions identity_ecdsa_verifier/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

#![doc = include_str!("./../README.md")]
#![warn(
rust_2018_idioms,
Expand Down
3 changes: 3 additions & 0 deletions identity_ecdsa_verifier/src/secp256k1.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::ops::Deref;

use identity_verification::jwk::JwkParamsEc;
Expand Down
3 changes: 3 additions & 0 deletions identity_ecdsa_verifier/src/secp256r1.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

use std::ops::Deref;

use identity_verification::jwk::JwkParamsEc;
Expand Down
3 changes: 3 additions & 0 deletions identity_ecdsa_verifier/src/tests.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod es256 {
use identity_verification::jwk::EcCurve;
use identity_verification::jwk::Jwk;
Expand Down

0 comments on commit 4992ca9

Please sign in to comment.