Home | History | Annotate | Download | only in util

Lines Matching refs:pem

30   // Reads an X509 certificate from a PEM encoded string.
31 // @param pem the PEM encoded string
34 static X509* X509FromPEM(std::string pem);
36 // Converts an X509 certificate to a PEM encoded string.
38 // @return a PEM encoded string of the given certificate
41 // Loads a private key from a PEM encoded string.
42 // @param pem the PEM encoded string
46 static EVP_PKEY* PKEYFromPEM(std::string pem,
49 // Converts a private key to a PEM encoded string.
52 // @return a PEM encoded string of the given private key