Ejemplo n.º 1
0
 public X509Credential(InputStream certInputStream, InputStream keyInputStream)
     throws CredentialException {
   if (certInputStream.markSupported()) {
     certInputStream.mark(BUFFER_SIZE);
   }
   loadKey(keyInputStream);
   loadCertificate(certInputStream);
   validateCredential();
 }
Ejemplo n.º 2
0
 public X509Credential(String certFile, String keyFile) throws CredentialException, IOException {
   loadKey(new FileInputStream(new File(keyFile)));
   loadCertificate(new FileInputStream(new File(certFile)));
   validateCredential();
 }