-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/eidomni 544 reusing rust crypto logic #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…from DID Resolver 2.5.0)
…the new VerificationMethodKeyProvider impl. DalekEd25519VerificationMethodKeyProviderImpl
…roviderImpl minimized
src/main/java/ch/admin/bj/swiyu/didtoolbox/DalekEd25519VerificationMethodKeyProviderImpl.java
Fixed
Show fixed
Hide fixed
src/main/java/ch/admin/bj/swiyu/didtoolbox/DalekEd25519VerificationMethodKeyProviderImpl.java
Fixed
Show fixed
Hide fixed
src/main/java/ch/admin/bj/swiyu/didtoolbox/DalekEd25519VerificationMethodKeyProviderImpl.java
Fixed
Show fixed
Hide fixed
src/main/java/ch/admin/bj/swiyu/didtoolbox/ProofOfPossessionVerifier.java
Fixed
Show fixed
Hide fixed
src/main/java/ch/admin/bj/swiyu/didtoolbox/VerificationMethodKeyProviderException.java
Fixed
Show fixed
Hide fixed
src/main/java/ch/admin/bj/swiyu/didtoolbox/DalekEd25519ProofOfPossessionJWSSignerImpl.java
Outdated
Show resolved
Hide resolved
src/main/java/ch/admin/bj/swiyu/didtoolbox/ProofOfPossessionVerifier.java
Outdated
Show resolved
Hide resolved
src/main/java/ch/admin/bj/swiyu/didtoolbox/VerificationMethodKeyProvider.java
Outdated
Show resolved
Hide resolved
src/main/java/ch/admin/bj/swiyu/didtoolbox/webvh/WebVerifiableHistoryCreator.java
Outdated
Show resolved
Hide resolved
src/main/java/ch/admin/bj/swiyu/didtoolbox/Ed25519VerificationMethodKeyProviderImpl.java
Dismissed
Show dismissed
Hide dismissed
src/main/java/ch/admin/bj/swiyu/didtoolbox/TdwDeactivator.java
Dismissed
Show dismissed
Hide dismissed
...n/java/ch/admin/bj/swiyu/didtoolbox/vc_data_integrity/VcDataIntegrityCryptographicSuite.java
Fixed
Show fixed
Hide fixed
| // throw new AccessDeniedException("Access denied to " + outputDir.getPath() + " due to: " + ex.getMessage()); | ||
| } catch (Throwable thr) { | ||
| throw new IOException("Failed to create private directory " + pathname + " due to: " + thr.getMessage()); | ||
| throw new DidLogCreatorStrategyException("Failed to create private directory " + pathname + " due to: " + thr.getMessage()); |
Check warning
Code scanning / PMD
Thrown exception does not preserve the stack trace of exception 'e' on all code paths Warning
| matchingUpdateKey = publicKeyEd25519Multibase; | ||
| break; | ||
| } | ||
| } catch (VcDataIntegrityCryptographicSuiteException ignoreMalformedPemFiles) { | ||
| } |
Check warning
Code scanning / PMD
Deeply nested if..then statements are hard to read Warning
| try { | ||
| this.updateKeys = WebVerifiableHistoryDidLogMetaPeeker.peek(didLog).getParams().getUpdateKeys(); // assume a did:webvh log | ||
| } catch (DidLogMetaPeekerException exc1) { // not a did:webvh log | ||
| throw new ProofOfPossessionVerifierException(exc1); |
Check warning
Code scanning / PMD
Thrown exception does not preserve the stack trace of exception 'e' on all code paths Warning
No description provided.