Python cryptography.x509.oid.NameOID.DOMAIN_COMPONENT Examples
The following are 1
code examples of cryptography.x509.oid.NameOID.DOMAIN_COMPONENT().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
cryptography.x509.oid.NameOID
, or try the search function
.
Example #1
Source File: utils.py From zentral with Apache License 2.0 | 5 votes |
def build_name_attributes_update_dict_from_name(name): update_dict = {} for oid, ztl_attr, is_list in ((NameOID.COMMON_NAME, "common_name", False), (NameOID.ORGANIZATION_NAME, "organization", False), (NameOID.ORGANIZATIONAL_UNIT_NAME, "organizational_unit", False), (NameOID.DOMAIN_COMPONENT, "domain", True)): name_attributes = name.get_attributes_for_oid(oid) if name_attributes: if is_list: value = ".".join(na.value for na in name_attributes[::-1]) else: value = name_attributes[-1].value update_dict[ztl_attr] = value return update_dict