Exemple #1
0
 def __bytes__(self):
     """
     Produces an ascii representation of the name, escaping all
     symbols > 0x80.  Probably it is not what you want, unless
     your native language is English
     """
     bio = Membio()
     libcrypto.X509_NAME_print_ex(bio.bio, self.ptr, 0,
                                  self.PRINT_FLAG | self.ESC_MSB)
     return bio.__bytes__()