36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
/* Copyright (c) 2024 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_COMPONENTS_WEB_DISCOVERY_BROWSER_ECDH_AES_H_
|
|
#define BRAVE_COMPONENTS_WEB_DISCOVERY_BROWSER_ECDH_AES_H_
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "base/containers/span.h"
|
|
|
|
namespace web_discovery {
|
|
|
|
struct AESEncryptResult {
|
|
AESEncryptResult(std::vector<uint8_t> data,
|
|
std::string encoded_public_component_and_iv);
|
|
~AESEncryptResult();
|
|
|
|
AESEncryptResult(const AESEncryptResult&);
|
|
AESEncryptResult& operator=(const AESEncryptResult&);
|
|
|
|
std::vector<uint8_t> data;
|
|
std::string encoded_public_component_and_iv;
|
|
};
|
|
|
|
std::optional<AESEncryptResult> DeriveAESKeyAndEncrypt(
|
|
base::span<uint8_t> server_pub_key,
|
|
base::span<uint8_t> data);
|
|
|
|
} // namespace web_discovery
|
|
|
|
#endif // BRAVE_COMPONENTS_WEB_DISCOVERY_BROWSER_ECDH_AES_H_
|