I have read the question Converting ECC Private key to PKCS#1 format. And I understood that the value of the version field of the traditional EC private key is 01
.
We can use the command openssl pkcs8 -topk8 -nocrypt
to convert the traditional key to unencrypted) PKCS#8 format. Once the key is converted the version field of the converted key is 00
.
What is the meaning of these version field? If I see a version field value as 01
, Does that confirm the key is not in PKCS#8 format?