Home
last modified time | relevance | path

Searched refs:rfc4514_string (Results 1 – 4 of 4) sorted by relevance

/external/python/cryptography/src/cryptography/x509/
Dname.py118 def rfc4514_string(self): member in NameAttribute
165 def rfc4514_string(self): member in RelativeDistinguishedName
172 return '+'.join(attr.rfc4514_string() for attr in self._attributes)
193 return "<RelativeDistinguishedName({0})>".format(self.rfc4514_string())
211 def rfc4514_string(self): member in Name
221 return ','.join(attr.rfc4514_string() for attr in self._attributes)
256 return "<Name({0})>".format(self.rfc4514_string())
/external/python/cryptography/
DCHANGELOG.rst35 * Added ``rfc4514_string()`` method to
36 :meth:`x509.Name <cryptography.x509.Name.rfc4514_string>`,
38 <cryptography.x509.RelativeDistinguishedName.rfc4514_string>`, and
39 :meth:`x509.NameAttribute <cryptography.x509.NameAttribute.rfc4514_string>`
/external/python/cryptography/tests/x509/
Dtest_x509.py3954 assert na.rfc4514_string() == r'CN=James \"Jim\" Smith\, III'
3956 assert na.rfc4514_string() == r'UID=\# escape\+\,\;\00this\ '
3960 assert (na.rfc4514_string() ==
4165 assert (n.rfc4514_string() ==
/external/python/cryptography/docs/x509/
Dreference.rst1249 .. method:: rfc4514_string()
1290 .. method:: rfc4514_string()
1313 .. method:: rfc4514_string()