-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Signing Key Handle to Oak Containers C++ SDK
Bug: 345761932 Change-Id: I3e32af292440b385cbd323a696624fd7f52bd318
- Loading branch information
Showing
7 changed files
with
178 additions
and
4 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,39 @@ | ||
/* | ||
* Copyright 2024 The Project Oak Authors | ||
* | ||
* Licensed 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 "cc/containers/sdk/signing_key_handle.h" | ||
|
||
#include "absl/status/statusor.h" | ||
#include "absl/strings/string_view.h" | ||
|
||
namespace oak::containers::sdk { | ||
|
||
namespace { | ||
using ::oak::containers::v1::KeyOrigin; | ||
using ::oak::crypto::v1::Signature; | ||
} // namespace | ||
|
||
absl::StatusOr<Signature> InstanceSigningKeyHandle::Sign( | ||
absl::string_view message) { | ||
return orchestrator_crypto_client_.Sign(KeyOrigin::INSTANCE, message); | ||
} | ||
|
||
absl::StatusOr<Signature> GroupSigningKeyHandle::Sign( | ||
absl::string_view message) { | ||
return orchestrator_crypto_client_.Sign(KeyOrigin::GROUP, message); | ||
} | ||
|
||
} // namespace oak::containers::sdk |
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,47 @@ | ||
/* | ||
* Copyright 2024 The Project Oak Authors | ||
* | ||
* Licensed 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. | ||
*/ | ||
|
||
#ifndef CC_CONTAINERS_SDK_SIGNING_KEY_HANDLE_H_ | ||
#define CC_CONTAINERS_SDK_SIGNING_KEY_HANDLE_H_ | ||
|
||
#include "absl/status/statusor.h" | ||
#include "absl/strings/string_view.h" | ||
#include "cc/containers/sdk/orchestrator_crypto_client.h" | ||
#include "cc/crypto/signing_key.h" | ||
|
||
namespace oak::containers::sdk { | ||
|
||
class InstanceSigningKeyHandle : public ::oak::crypto::SigningKeyHandle { | ||
public: | ||
absl::StatusOr<::oak::crypto::v1::Signature> Sign( | ||
absl::string_view message) override; | ||
|
||
private: | ||
OrchestratorCryptoClient orchestrator_crypto_client_; | ||
}; | ||
|
||
class GroupSigningKeyHandle : public ::oak::crypto::SigningKeyHandle { | ||
public: | ||
absl::StatusOr<::oak::crypto::v1::Signature> Sign( | ||
absl::string_view message) override; | ||
|
||
private: | ||
OrchestratorCryptoClient orchestrator_crypto_client_; | ||
}; | ||
|
||
} // namespace oak::containers::sdk | ||
|
||
#endif // THIRD_PARTY_OAK_CC_CONTAINERS_SIGNING_KEY_HANDLE_H_ |
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,36 @@ | ||
/* | ||
* Copyright 2024 The Project Oak Authors | ||
* | ||
* Licensed 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. | ||
*/ | ||
|
||
#ifndef CC_CRYPTO_SIGNING_KEY_H_ | ||
#define CC_CRYPTO_SIGNING_KEY_H_ | ||
|
||
#include "absl/status/statusor.h" | ||
#include "absl/strings/string_view.h" | ||
#include "proto/crypto/crypto.pb.h" | ||
|
||
namespace oak::crypto { | ||
|
||
class SigningKeyHandle { | ||
public: | ||
virtual absl::StatusOr<::oak::crypto::v1::Signature> Sign( | ||
absl::string_view message) = 0; | ||
|
||
virtual ~SigningKeyHandle() = default; | ||
}; | ||
|
||
} // namespace oak::crypto | ||
|
||
#endif // CC_CRYPTO_SIGNING_KEY_H_ |