Home | History | Annotate | Download | only in ssl

Lines Matching defs:out

12  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
574 static bool DecodeBase64(std::vector<uint8_t> *out, const char *in) {
581 out->resize(len);
582 if (!EVP_DecodeBase64(out->data(), &len, len, (const uint8_t *)in,
587 out->resize(len);
689 static bool CipherGetRFCName(std::string *out, uint16_t value) {
698 out->assign(rfc_name.get());
766 // Swap out the ticket for a garbage one.
885 std::vector<SSL_SESSION*> *out =
887 out->push_back(session);