utils_25.py 125 B

1234
  1. def save_to_file(self, path):
  2. with open(path, "w") as f:
  3. f.write(self.cert_pem())
  4. f.write(self.key_pem())