2017-04-24 21:29:11 +01:00
|
|
|
/* 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. */
|
|
|
|
|
|
|
|
// cavp_aes_gcm_test processes a NIST CAVP AES GCM test vector request file and
|
2017-05-04 01:10:14 +01:00
|
|
|
// emits the corresponding response.
|
2017-04-24 21:29:11 +01:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <openssl/aead.h>
|
|
|
|
#include <openssl/cipher.h>
|
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
2017-04-29 00:45:49 +01:00
|
|
|
#include "../crypto/test/file_test.h"
|
2017-04-24 21:29:11 +01:00
|
|
|
#include "cavp_test_util.h"
|
|
|
|
|
|
|
|
|
2017-05-03 22:12:39 +01:00
|
|
|
namespace {
|
|
|
|
|
2017-04-24 21:29:11 +01:00
|
|
|
struct TestCtx {
|
|
|
|
const EVP_AEAD *aead;
|
|
|
|
};
|
|
|
|
|
2017-05-03 22:12:39 +01:00
|
|
|
}
|
|
|
|
|
2017-04-24 21:29:11 +01:00
|
|
|
static const EVP_AEAD *GetAEAD(const std::string &name, const bool enc) {
|
|
|
|
if (name == "aes-128-gcm") {
|
2017-05-30 19:43:25 +01:00
|
|
|
return EVP_aead_aes_128_gcm();
|
2017-04-24 21:29:11 +01:00
|
|
|
} else if (name == "aes-256-gcm") {
|
2017-05-30 19:43:25 +01:00
|
|
|
return EVP_aead_aes_256_gcm();
|
2017-04-24 21:29:11 +01:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool TestAEADEncrypt(FileTest *t, void *arg) {
|
|
|
|
TestCtx *ctx = reinterpret_cast<TestCtx *>(arg);
|
|
|
|
|
|
|
|
std::string key_len_str, iv_len_str, pt_len_str, aad_len_str, tag_len_str;
|
|
|
|
if (!t->GetInstruction(&key_len_str, "Keylen") ||
|
|
|
|
!t->GetInstruction(&iv_len_str, "IVlen") ||
|
|
|
|
!t->GetInstruction(&pt_len_str, "PTlen") ||
|
|
|
|
!t->GetInstruction(&aad_len_str, "AADlen") ||
|
|
|
|
!t->GetInstruction(&tag_len_str, "Taglen")) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string count;
|
|
|
|
std::vector<uint8_t> key, iv, pt, aad, tag, ct;
|
|
|
|
if (!t->GetAttribute(&count, "Count") ||
|
|
|
|
!t->GetBytes(&key, "Key") ||
|
2017-05-30 19:43:25 +01:00
|
|
|
!t->GetBytes(&iv, "IV") ||
|
2017-04-24 21:29:11 +01:00
|
|
|
!t->GetBytes(&pt, "PT") ||
|
2017-05-30 19:43:25 +01:00
|
|
|
!t->GetBytes(&aad, "AAD") ||
|
2017-04-24 21:29:11 +01:00
|
|
|
key.size() * 8 != strtoul(key_len_str.c_str(), nullptr, 0) ||
|
2017-05-30 19:43:25 +01:00
|
|
|
iv.size() * 8 != strtoul(iv_len_str.c_str(), nullptr, 0) ||
|
2017-04-24 21:29:11 +01:00
|
|
|
pt.size() * 8 != strtoul(pt_len_str.c_str(), nullptr, 0) ||
|
2017-05-30 19:43:25 +01:00
|
|
|
aad.size() * 8 != strtoul(aad_len_str.c_str(), nullptr, 0) ||
|
|
|
|
iv.size() != 12) {
|
2017-04-24 21:29:11 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-30 19:43:25 +01:00
|
|
|
const size_t tag_len = strtoul(tag_len_str.c_str(), nullptr, 0) / 8;
|
|
|
|
if (!AEADEncrypt(ctx->aead, &ct, &tag, tag_len, key, pt, aad, iv)) {
|
2017-04-24 21:29:11 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
printf("%s", t->CurrentTestToString().c_str());
|
|
|
|
printf("CT = %s\r\n", EncodeHex(ct.data(), ct.size()).c_str());
|
|
|
|
printf("Tag = %s\r\n\r\n", EncodeHex(tag.data(), tag.size()).c_str());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool TestAEADDecrypt(FileTest *t, void *arg) {
|
|
|
|
TestCtx *ctx = reinterpret_cast<TestCtx *>(arg);
|
|
|
|
|
|
|
|
std::string key_len, iv_len, pt_len_str, aad_len_str, tag_len;
|
|
|
|
if (!t->GetInstruction(&key_len, "Keylen") ||
|
|
|
|
!t->GetInstruction(&iv_len, "IVlen") ||
|
|
|
|
!t->GetInstruction(&pt_len_str, "PTlen") ||
|
|
|
|
!t->GetInstruction(&aad_len_str, "AADlen") ||
|
|
|
|
!t->GetInstruction(&tag_len, "Taglen")) {
|
|
|
|
t->PrintLine("Invalid instruction block.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
size_t aad_len = strtoul(aad_len_str.c_str(), nullptr, 0) / 8;
|
|
|
|
size_t pt_len = strtoul(pt_len_str.c_str(), nullptr, 0) / 8;
|
|
|
|
|
|
|
|
std::string count;
|
|
|
|
std::vector<uint8_t> key, iv, ct, aad, tag, pt;
|
|
|
|
if (!t->GetAttribute(&count, "Count") ||
|
|
|
|
!t->GetBytes(&key, "Key") ||
|
|
|
|
!t->GetBytes(&aad, "AAD") ||
|
|
|
|
!t->GetBytes(&tag, "Tag") ||
|
|
|
|
!t->GetBytes(&iv, "IV") ||
|
|
|
|
!t->GetBytes(&ct, "CT") ||
|
|
|
|
key.size() * 8 != strtoul(key_len.c_str(), nullptr, 0) ||
|
|
|
|
iv.size() * 8 != strtoul(iv_len.c_str(), nullptr, 0) ||
|
|
|
|
ct.size() != pt_len ||
|
|
|
|
aad.size() != aad_len ||
|
|
|
|
tag.size() * 8 != strtoul(tag_len.c_str(), nullptr, 0)) {
|
|
|
|
t->PrintLine("Invalid test case");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s", t->CurrentTestToString().c_str());
|
|
|
|
bool aead_result =
|
2017-05-30 19:43:25 +01:00
|
|
|
AEADDecrypt(ctx->aead, &pt, pt_len, key, aad, ct, tag, iv);
|
2017-04-24 21:29:11 +01:00
|
|
|
if (aead_result) {
|
|
|
|
printf("PT = %s\r\n\r\n", EncodeHex(pt.data(), pt.size()).c_str());
|
|
|
|
} else {
|
|
|
|
printf("FAIL\r\n\r\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usage(char *arg) {
|
2017-05-04 01:10:14 +01:00
|
|
|
fprintf(stderr, "usage: %s (enc|dec) <cipher> <test file>\n", arg);
|
2017-04-24 21:29:11 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-05-03 22:12:39 +01:00
|
|
|
int cavp_aes_gcm_test_main(int argc, char **argv) {
|
2017-05-04 01:10:14 +01:00
|
|
|
if (argc != 4) {
|
2017-04-24 21:29:11 +01:00
|
|
|
return usage(argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string mode(argv[1]);
|
|
|
|
bool (*test_fn)(FileTest * t, void *arg);
|
|
|
|
if (mode == "enc") {
|
|
|
|
test_fn = &TestAEADEncrypt;
|
|
|
|
} else if (mode == "dec") {
|
|
|
|
test_fn = &TestAEADDecrypt;
|
|
|
|
} else {
|
|
|
|
return usage(argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
const EVP_AEAD *aead = GetAEAD(argv[2], mode == "enc");
|
|
|
|
if (aead == nullptr) {
|
|
|
|
fprintf(stderr, "invalid aead: %s\n", argv[2]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-05-04 01:10:14 +01:00
|
|
|
TestCtx ctx = {aead};
|
2017-04-24 21:29:11 +01:00
|
|
|
|
|
|
|
printf("# Generated by");
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
printf(" %s", argv[i]);
|
|
|
|
}
|
2017-04-30 18:57:48 +01:00
|
|
|
printf("\r\n\r\n");
|
2017-04-24 21:29:11 +01:00
|
|
|
|
|
|
|
return FileTestMainSilent(test_fn, &ctx, argv[3]);
|
|
|
|
}
|