(n)
| 812 | |
| 813 | |
| 814 | def render_x509_object(n): |
| 815 | output = b'' |
| 816 | for component in n.get_components(): |
| 817 | output += b"%s=%s " % component |
| 818 | return output.rstrip().decode('utf-8') |
| 819 | |
| 820 | |
| 821 | def openSSL_cert_to_info_dictionary(c): |
no outgoing calls
no test coverage detected