Hi,
I am currently working on a use case that requires the generation of JWT tokens based on PKCS#8 standards. I've chosen JWT plugin for this task. However, it seems that this plugin is compatible only with private keys that are based on PKCS#1 (RSA) standards.
Is there any known workaround to fulfill this requirement ?
Thanks,
Discussion posts and replies are publicly visible
Did you try converting your pkcs 8 key into pkcs 1 and then using that with the JWT plugin?
openssl rsa -in pkcs8.key -out pkcs1.key
Yes, I tried but Snowflakes doesn't like that token, It supports PKCS#8 format only.