问题 I'm generating a key pair using the secp256k1 curve. Then I'm using the private key to sign a random String: byte[] content = "random string".getBytes(); Signature dsa = Signature.getInstance("SHA256withECDSA"); dsa.initSign(privateKey); dsa.update(content); byte[] signature = dsa.sign(); The signature byte array has the following content: [48, 68, 2, 32, 11, 25, 119, -64, -107, 53, -84, 65, -18, -81, -56, 34, 11, 29, 120, 38, -102, 105, -89, -9, -46, -28, 91, 59, -74, -103, -53, 117, 81, -37