I use the following command line to generate the ECDSA signature in Linux. In Linux, you can use the command line to verify the signature. This is no problem
In Windows, the same command line can also be signed and verified successfully
openssl ecparam -name secp192k1 -genkey -out ec.key
openssl ec -in ec.key -pubout -out ec.pubkey
openssl dgst -sha1 -sign ec.key -out ec.sig content.txt
openssl dgst -sha1 -verify ec.pubkey -signature ec.sig content.txt
But here's the thing.
I put all files generated in Linux into Windows, and then use the command line to verify the signature, the result is an error, why?