You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the document, we can use jwx jwk parse command to parse PEM encoded key.
But, it seems that the jwx jwk parse command is no longer used. so I think we need to use jwx jwk format instead to do it.
$ jwx jwk parse --input-format pem ec.pem
No help topic for 'parse'
$ jwx jwk --help
NAME:
jwx jwk - Work with JWK and JWK sets
USAGE:
jwx jwk command [command options] [arguments...]
COMMANDS:
generate, gen Generate a new JWK private key
format, fmt Format JWK
help, h Shows a list of commands or help for one command
OPTIONS:
--help, -h show help
$ jwx jwk format --input-format pem --output-format json ec.pem
{
"crv": "P-256",
...
}
How about I think the document needs to be fixed as above?
The text was updated successfully, but these errors were encountered:
As per the document, we can use
jwx jwk parse
command to parse PEM encoded key.But, it seems that the
jwx jwk parse
command is no longer used. so I think we need to usejwx jwk format
instead to do it.How about I think the document needs to be fixed as above?
The text was updated successfully, but these errors were encountered: