def export_cs_cert(self, path):
        """
        Copy the certificate giving it the name that can be stored in
        trustStore for verification of signatures.
        file is the out file

        """
        return certificate.export_cert(self.certificate, path)
Beispiel #2
0
    def export_cs_cert(self, path):
        """
        Copy the certificate giving it the name that can be stored in
        trustStore for verification of signatures.
        file is the out file

        """
        return certificate.export_cert(self.certificate, path)
    def export_ca_cert(self, path):
        """
        Copy the certificate giving it the name that can be stored in
        trustStore for verification of signatures.
        file is the out file

        """
        return certificate.export_cert(self.configuration["CA_default"]["certificate"], path)
    def export_ca_cert(self, path):
        """
        Copy the certificate giving it the name that can be stored in
        trustStore for verification of signatures.
        file is the out file

        """
        return certificate.export_cert(
            self.configuration["CA_default"]["certificate"], path)