/* Copyright (c) 2014, Google Inc. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <stdio.h> #include <string.h> #include <string> #include <vector> #include <gtest/gtest.h> #include <openssl/base64.h> #include <openssl/crypto.h> #include <openssl/err.h> #include "../internal.h" #include "../test/test_util.h" enum encoding_relation { … }; struct Base64TestVector { … }; static const Base64TestVector kTestVectors[] = …; class Base64Test : public testing::TestWithParam<Base64TestVector> { … }; INSTANTIATE_TEST_SUITE_P(…); // RemoveNewlines returns a copy of |in| with all '\n' characters removed. static std::string RemoveNewlines(const char *in) { … } TEST_P(Base64Test, EncodeBlock) { … } TEST_P(Base64Test, DecodeBase64) { … } TEST_P(Base64Test, DecodeBlock) { … } TEST_P(Base64Test, EncodeDecode) { … } TEST_P(Base64Test, DecodeUpdateStreaming) { … }