-
Notifications
You must be signed in to change notification settings - Fork 10
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
Fix key type bug in Secp256k1 #64
Conversation
@@ -15,6 +15,7 @@ dependencies { | |||
implementation("org.bouncycastle:bcprov-jdk15on:1.70") | |||
implementation("org.bouncycastle:bcpkix-jdk15on:1.70") | |||
implementation(project(":common")) | |||
testImplementation(kotlin("test")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mostly unrelated to this PR (esp. because i'm using this in dids
as well), should we use junit5 instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🏅
import com.nimbusds.jose.JWSAlgorithm | ||
import com.nimbusds.jose.jwk.KeyType | ||
import com.nimbusds.jose.jwk.KeyUse | ||
import org.junit.jupiter.api.Assertions.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think detekt usually chokes on star imports
Overview
Fix some copy + paste bugs in Secp256k1