Helper function to dynamically add values to cert_object
(self, cert_object, name, value)
| 493 | return self.CT_LOG_MAP[key]["url"] |
| 494 | |
| 495 | def __add_co_array_value(self, cert_object, name, value): |
| 496 | """ |
| 497 | Helper function to dynamically add values to cert_object |
| 498 | """ |
| 499 | if name in cert_object: |
| 500 | cert_object[name].append(value) |
| 501 | else: |
| 502 | cert_object[name] = [] |
| 503 | cert_object[name].append(value) |
| 504 | |
| 505 | def __get_dn_values(self, cert_object, names, source): |
| 506 | """ |