readCertificateDataFromFile(fileName: String) updating;
The readCertificateDataFromFile method of the JadeX509Certificate class reads data from the certificate specified in the fileName parameter, as shown in the following example.
vars x509 : JadeX509Certificate; begin create x509 transient; x509.readCertificateDataFromFile("c:\certificates\mycert.pem"); epilog delete x509; end;