Skip to content

Commit

Permalink
api changes alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Sep 19, 2024
1 parent 3138eb8 commit 1abbd9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vck-openid/src/commonTest/kotlin/KotestConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class KotestConfig : AbstractProjectConfig() {
init {
Napier.takeLogarithm()
Napier.base(DebugAntilog())
at.asitplus.wallet.mdl.Initializer.initWithVck()
at.asitplus.wallet.mdl.Initializer.initWithVCK()
at.asitplus.wallet.eupid.Initializer.initWithVCK()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ open class IssuerSignedListSerializer(val namespace: String) : KSerializer<Issue

@ExperimentalSerializationApi
override fun getElementAnnotations(index: Int): List<Annotation> {
@OptIn(ExperimentalUnsignedTypes::class)
return listOf(ValueTags(24U))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ open class IssuerSignedItemSerializer(private val namespace: String) : KSerializ
elementName = IssuerSignedItem.PROP_ELEMENT_VALUE,
descriptor = buildElementValueSerializer(value.elementValue).descriptor,
annotations = if (value.elementValue is LocalDate || value.elementValue is Instant)
@OptIn(ExperimentalUnsignedTypes::class)
listOf(ValueTags(1004uL)) else emptyList()
)
}
Expand Down

0 comments on commit 1abbd9e

Please sign in to comment.