Need help debugging FIDO_ERR_INTERNAL
when using pin
#698
-
This is the debug log when pin is provided to
I think something is not working in
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Hi, It looks to me like Under the assumption that you have not modified the libfido2 source code: Is your build of
|
Beta Was this translation helpful? Give feedback.
-
Thanks. I haven't modified the source code.
I am using the rust and linking the library like this |
Beta Was this translation helpful? Give feedback.
-
Hello, I will try to see if I can get a minimal reproducible code. |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
Hello,
So I was able to figure out the issue. My application had boringssl statically linked, so the functions in
EVP_PKEY_paramgen()
resolves to the one in boringssl. That was the reason for PIN not working. Thanks for the help.