Deserialization issue for CtapPinUvAuthProtocolVersion #214
-
Hi everyone, I have already set up a working FIDO2 pipeline with registration and authentication ceremonies. The connection to fidoalliance's website is working fine, and the Blob is correctly retrieved. My problem appears during the verification of the blob:
Have I actually missed something in the Downloader instantiation ? I have version 2.13.3 for fasterxml:jackson-databind, could this play a role in this verification ? Any help appreciated ! Thanks a lot 👍 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Ok so this issue relates to a jackson-databind bug: FasterXML/jackson-databind#1850 So it is really about the jackson-databind version, which should be 2.13.3 at least |
Beta Was this translation helpful? Give feedback.
-
Thanks for the report, and for looking into it! I've been able to reproduce the issue with diff --git a/build.gradle b/build.gradle
index 3405b27c..a88dc63b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -45,17 +45,10 @@ wrapper {
dependencies {
constraints {
api('com.augustcellars.cose:cose-java:[1.0.0,2)')
- api('com.fasterxml.jackson.core:jackson-databind:[2.13.2.1,3)')
- api('com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:[2.13.2,3)')
- api('com.fasterxml.jackson.datatype:jackson-datatype-jdk8:[2.13.2,3)')
- api('com.fasterxml.jackson.datatype:jackson-datatype-jsr310:[2.13.2,3)')
- api('com.fasterxml.jackson:jackson-bom') {
- version {
- strictly '[2.13.2.1,3)'
- reject '2.13.2.1'
- }
- because 'jackson-databind 2.13.2.1 references nonexistent BOM'
- }
+ api('com.fasterxml.jackson.core:jackson-databind:2.12.7')
+ api('com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.12.7')
+ api('com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.7')
+ api('com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.7')
api('com.google.guava:guava:[24.1.1,31)')
api('com.upokecenter:cbor:[4.5.1,5)')
api('javax.ws.rs:javax.ws.rs-api:[2.1,3)') then both I've not been able to reproduce the issue with Jackson |
Beta Was this translation helpful? Give feedback.
Ok so this issue relates to a jackson-databind bug: FasterXML/jackson-databind#1850
So it is really about the jackson-databind version, which should be 2.13.3 at least