Skip to content

Commit

Permalink
Undo unecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KendallWeihe committed May 6, 2024
1 parent 125b71a commit 4e4c311
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/jws/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pub mod v2;

use base64::{engine::general_purpose, DecodeError, Engine as _};
use base64::{engine::general_purpose, Engine as _};
use crypto::{ed25519::Ed25519, secp256k1::Secp256k1, CryptoError, CurveOperations};
use dids::{
bearer::{BearerDid, BearerDidError},
Expand Down Expand Up @@ -29,10 +29,6 @@ pub enum JwsError {
AlgorithmNotFound(String),
#[error(transparent)]
CryptoError(#[from] CryptoError),
#[error("serde json error {0}")]
SerdeJsonError(String),
#[error(transparent)]
DecodeError(#[from] DecodeError),
}

pub fn splice_parts(compact_jws: &str) -> Result<Vec<String>, JwsError> {
Expand Down

0 comments on commit 4e4c311

Please sign in to comment.