/* Copyright (c) 2017, 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. */ #ifndef OPENSSL_HEADER_CRYPTO_FIPSMODULE_CAVP_TEST_UTIL_H #define OPENSSL_HEADER_CRYPTO_FIPSMODULE_CAVP_TEST_UTIL_H #include #include #include #include #include #include "../crypto/test/file_test.h" std::string EncodeHex(const uint8_t *in, size_t in_len); const EVP_CIPHER *GetCipher(const std::string &name); bool CipherOperation(const EVP_CIPHER *cipher, std::vector *out, bool encrypt, const std::vector &key, const std::vector &iv, const std::vector &in); bool AEADEncrypt(const EVP_AEAD *aead, std::vector *ct, std::vector *tag, size_t tag_len, const std::vector &key, const std::vector &pt, const std::vector &aad, std::vector *iv); bool AEADDecrypt(const EVP_AEAD *aead, std::vector *pt, std::vector *aad, size_t pt_len, size_t aad_len, const std::vector &key, const std::vector &ct, const std::vector &tag, std::vector &iv); bssl::UniquePtr GetBIGNUM(FileTest *t, const char *attribute); int GetECGroupNIDFromInstruction(FileTest *t); const EVP_MD *GetDigestFromInstruction(FileTest *t); #endif // OPENSSL_HEADER_CRYPTO_FIPSMODULE_CAVP_TEST_UTIL_H