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.
38 lines
911 B
38 lines
911 B
// 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.
|
|
|
|
#ifndef CAST_COMMON_CERTIFICATE_TESTING_TEST_HELPERS_H_
|
|
#define CAST_COMMON_CERTIFICATE_TESTING_TEST_HELPERS_H_
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "cast/common/certificate/cast_cert_validator_internal.h"
|
|
#include "cast/common/certificate/types.h"
|
|
|
|
namespace openscreen {
|
|
namespace cast {
|
|
namespace testing {
|
|
|
|
class SignatureTestData {
|
|
public:
|
|
SignatureTestData();
|
|
~SignatureTestData();
|
|
|
|
ConstDataSpan message;
|
|
ConstDataSpan sha1;
|
|
ConstDataSpan sha256;
|
|
};
|
|
|
|
SignatureTestData ReadSignatureTestData(absl::string_view filename);
|
|
|
|
} // namespace testing
|
|
} // namespace cast
|
|
} // namespace openscreen
|
|
|
|
#endif // CAST_COMMON_CERTIFICATE_TESTING_TEST_HELPERS_H_
|