#ifndef COMPONENTS_REPORTING_ENCRYPTION_TESTING_PRIMITIVES_H_
#define COMPONENTS_REPORTING_ENCRYPTION_TESTING_PRIMITIVES_H_
#include <cstddef>
#include <cstdint>
#include <string>
#include <string_view>
#include "components/reporting/encryption/primitives.h"
namespace reporting {
namespace test {
void GenerateEncryptionKeyPair(uint8_t private_key[kKeySize],
uint8_t public_value[kKeySize]);
void RestoreSharedSecret(const uint8_t private_key[kKeySize],
const uint8_t peer_public_value[kKeySize],
uint8_t shared_secret[kKeySize]);
void PerformSymmetricDecryption(const uint8_t symmetric_key[kKeySize],
std::string_view input_data,
std::string* output_data);
void GenerateSigningKeyPair(uint8_t private_key[kSignKeySize],
uint8_t public_value[kKeySize]);
void SignMessage(const uint8_t signing_key[kSignKeySize],
std::string_view message,
uint8_t signature[kSignatureSize]);
}
}
#endif