why the issuer name is reversed when i get it using python?
i have a certificate and when i use python to get the issuer name of the certificate i get the issuer name reversed : the correct issuer name : CN=PEZEINVOICESCA2-CA,DC=extgazt,DC=gov,DC=local the issuer name that i get : DC=local,DC=gov,DC=extgazt,CN=PEZEINVOICESCA2-CA this is the code that i use to get the issuer name : import cryptography.x509 your_Certificate =… Read More why the issuer name is reversed when i get it using python?