-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: refactor trust chain validation module
- Loading branch information
Zoe Maas
committed
Oct 10, 2024
1 parent
37f1759
commit a36581a
Showing
10 changed files
with
305 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,6 @@ kotlin { | |
} | ||
} | ||
} | ||
useEsModules() | ||
generateTypeScriptDefinitions() | ||
binaries.executable() | ||
} | ||
|
||
sourceSets { | ||
|
2 changes: 2 additions & 0 deletions
2
...d-federation-client/src/commonMain/kotlin/com/sphereon/oid/fed/client/ICallbackService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...src/commonMain/kotlin/com/sphereon/oid/fed/client/validation/TrustChainValidationConst.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.sphereon.oid.fed.client.validation | ||
|
||
import com.sphereon.oid.fed.common.logging.Logger | ||
|
||
object TrustChainValidationConst { | ||
val LOG_NAMESPACE = "sphereon:kmp:openid-federation-client" | ||
val LOG = Logger.Static.tag(LOG_NAMESPACE) | ||
val TRUST_CHAIN_VALIDATION_LITERAL = "TRUST_CHAIN_VALIDATION" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...nid-federation-client/src/jsMain/kotlin/com/sphereon/oid/fed/client/ICallbackServiceJS.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.