def get_name(self):
     # type: () -> str
     """
     Get the extension name, for example 'subjectAltName'.
     """
     return util.py3str(m2.x509_extension_get_name(self.x509_ext))
示例#2
0
 def get_name(self):
     # type: () -> str
     """
     Get the extension name, for example 'subjectAltName'.
     """
     return six.ensure_text(m2.x509_extension_get_name(self.x509_ext))
示例#3
0
文件: X509.py 项目: mcepl/M2Crypto
 def get_name(self):
     # type: () -> str
     """
     Get the extension name, for example 'subjectAltName'.
     """
     return six.ensure_text(m2.x509_extension_get_name(self.x509_ext))
示例#4
0
 def get_name(self):
     """
     Get the extension name, for example 'subjectAltName'.
     """
     return m2.x509_extension_get_name(self.x509_ext)
示例#5
0
文件: X509.py 项目: rodrigc/m2crypto
 def get_name(self):
     """
     Get the extension name, for example 'subjectAltName'.
     """
     return m2.x509_extension_get_name(self.x509_ext)