MCPcopy Create free account
hub / github.com/adobe/Marinus / __add_co_array_value

Method __add_co_array_value

python3_cron_scripts/libs3/X509Parser.py:495–503  ·  view source on GitHub ↗

Helper function to dynamically add values to cert_object

(self, cert_object, name, value)

Source from the content-addressed store, hash-verified

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 """

Callers 1

__get_dn_valuesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected