forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature][cpp-client]Expose cpp end to end encryption interface (apac…
…he#9074) ### Motivation Currently some users want to use end-to-end encryption on other clients, such as python or node clients, and this pr is used to expose the end-to-end encryption interface. ### Modifications * Add a default class `DefaultCryptoKeyReader` to implement reading public and private keys * The client calls the `pulsar_consumer_configuration_set_default_crypto_key_reader` function to specify the path of the public and private keys to be passed to the cpp client * Add `DefaultCryptoKeyReader` class to the test ### Verifying this change * Update test The end-to-end tests already exist in the cpp client, so let's go ahead and use this example https://github.com/apache/pulsar/blob/041424cf06f16bedf4ef5787c9b96b7c5daf5fce/pulsar-client-cpp/tests/BasicEndToEndTest.cc#L1320 to test our code
- Loading branch information
Showing
7 changed files
with
211 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
#include <fstream> | ||
#include <sstream> | ||
#include <pulsar/EncryptionKeyInfo.h> | ||
#include <pulsar/CryptoKeyReader.h> | ||
#include <pulsar/Result.h> | ||
|
||
using namespace pulsar; | ||
|
||
CryptoKeyReader::CryptoKeyReader() {} | ||
CryptoKeyReader::~CryptoKeyReader() {} | ||
|
||
Result CryptoKeyReader::getPublicKey(const std::string& keyName, std::map<std::string, std::string>& metadata, | ||
EncryptionKeyInfo& encKeyInfo) const { | ||
return ResultInvalidConfiguration; | ||
} | ||
|
||
Result CryptoKeyReader::getPrivateKey(const std::string& keyName, | ||
std::map<std::string, std::string>& metadata, | ||
EncryptionKeyInfo& encKeyInfo) const { | ||
return ResultInvalidConfiguration; | ||
} | ||
|
||
DefaultCryptoKeyReader::DefaultCryptoKeyReader(const std::string& publicKeyPath, | ||
const std::string& privateKeyPath) { | ||
publicKeyPath_ = publicKeyPath; | ||
privateKeyPath_ = privateKeyPath; | ||
} | ||
|
||
DefaultCryptoKeyReader::~DefaultCryptoKeyReader() {} | ||
|
||
void DefaultCryptoKeyReader::readFile(std::string fileName, std::string& fileContents) const { | ||
std::ifstream ifs(fileName); | ||
std::stringstream fileStream; | ||
fileStream << ifs.rdbuf(); | ||
|
||
fileContents = fileStream.str(); | ||
} | ||
|
||
Result DefaultCryptoKeyReader::getPublicKey(const std::string& keyName, | ||
std::map<std::string, std::string>& metadata, | ||
EncryptionKeyInfo& encKeyInfo) const { | ||
std::string keyContents; | ||
readFile(publicKeyPath_, keyContents); | ||
|
||
encKeyInfo.setKey(keyContents); | ||
return ResultOk; | ||
} | ||
|
||
Result DefaultCryptoKeyReader::getPrivateKey(const std::string& keyName, | ||
std::map<std::string, std::string>& metadata, | ||
EncryptionKeyInfo& encKeyInfo) const { | ||
std::string keyContents; | ||
readFile(privateKeyPath_, keyContents); | ||
|
||
encKeyInfo.setKey(keyContents); | ||
return ResultOk; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters