How to load public certificate from pem file?
An X.509 certificate and an X509EncodedKeySpec are quite different structures, and trying to parse a cert as a key won’t work. Java’s X509EncodedKeySpec is actually SubjectPublicKeyInfo from X.509 or equivalent and more convenient PKIX also linked from Key, which is only a small part of a certificate. What you need to do is read and … Read more