Could not parse certificate: java.io.IOException: Empty input X509Certificate

前端 未结 3 848
渐次进展
渐次进展 2021-02-02 11:26

I am getting the error given below when parsing the signature. Anybody has idea why the error is showing?

Note that:

  1. Using the same certificate I signe

3条回答
  •  悲哀的现实
    2021-02-02 12:20

    Error can be as simple as not having the BEGIN and END tags in your certificate set.

    -----BEGIN CERTIFICATE-----
    your cert data here
    -----END CERTIFICATE-----
    

提交回复
热议问题