How to read RSA Public Key in Java from xml file?
This is file format.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<RSAKeyValue>
<Modulus>jWa96uXeSM6hUH0E/ueihtuowdte8</Modulus>
<Exponent>BAAQ</Exponent>
</RSAKeyValue>
|
How to read RSA Public Key in Java from xml file? This is file format.
| ||||
|
feedback
|
|
This element is part of XMLSec, normally it's wrapped inside <KeyInfo>. Java 6 comes with XMLSec support but I doubt it has public interface to parse this single element. This is simply Base64 encoded public key. Say you Base64-decode XML content into byte array as
| |||
|
feedback
|