ECDSA signature Java vs Go
问题 I am trying to learn some Go and blockchains.. Starting with ECDSA signatures. Trying to figure out how to test if I had a correctly working Go implementation of ECDSA signatures, I figured I would try to create a similar version in Java and compare the results to see if I can get them to match. So Java attempt: public static void main(String[] args) throws Exception { //the keys below are previously generated with "generateKey();" and base64 encoded generateKey(); String privStr =