You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
66 lines
1.8 KiB
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "cast/common/certificate/testing/test_helpers.h"
|
|
|
|
#include <openssl/bytestring.h>
|
|
#include <openssl/pem.h>
|
|
#include <openssl/rsa.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "absl/strings/match.h"
|
|
#include "util/osp_logging.h"
|
|
|
|
namespace openscreen {
|
|
namespace cast {
|
|
namespace testing {
|
|
|
|
SignatureTestData::SignatureTestData()
|
|
: message{nullptr, 0}, sha1{nullptr, 0}, sha256{nullptr, 0} {}
|
|
|
|
SignatureTestData::~SignatureTestData() {
|
|
OPENSSL_free(const_cast<uint8_t*>(message.data));
|
|
OPENSSL_free(const_cast<uint8_t*>(sha1.data));
|
|
OPENSSL_free(const_cast<uint8_t*>(sha256.data));
|
|
}
|
|
|
|
SignatureTestData ReadSignatureTestData(absl::string_view filename) {
|
|
FILE* fp = fopen(filename.data(), "r");
|
|
OSP_DCHECK(fp);
|
|
SignatureTestData result = {};
|
|
char* name;
|
|
char* header;
|
|
unsigned char* data;
|
|
long length; // NOLINT
|
|
while (PEM_read(fp, &name, &header, &data, &length) == 1) {
|
|
if (strcmp(name, "MESSAGE") == 0) {
|
|
OSP_DCHECK(!result.message.data);
|
|
result.message.data = data;
|
|
result.message.length = length;
|
|
} else if (strcmp(name, "SIGNATURE SHA1") == 0) {
|
|
OSP_DCHECK(!result.sha1.data);
|
|
result.sha1.data = data;
|
|
result.sha1.length = length;
|
|
} else if (strcmp(name, "SIGNATURE SHA256") == 0) {
|
|
OSP_DCHECK(!result.sha256.data);
|
|
result.sha256.data = data;
|
|
result.sha256.length = length;
|
|
} else {
|
|
OPENSSL_free(data);
|
|
}
|
|
OPENSSL_free(name);
|
|
OPENSSL_free(header);
|
|
}
|
|
OSP_DCHECK(result.message.data);
|
|
OSP_DCHECK(result.sha1.data);
|
|
OSP_DCHECK(result.sha256.data);
|
|
|
|
return result;
|
|
}
|
|
|
|
} // namespace testing
|
|
} // namespace cast
|
|
} // namespace openscreen
|