-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PiperOrigin-RevId: 668074997 Change-Id: I50679cdcb5ed0ead7068e85b353410a386c2849b
- Loading branch information
1 parent
f739e2f
commit 69beb2e
Showing
2 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// 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. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
syntax = "proto3"; | ||
|
||
package google.crypto.tink; | ||
|
||
option java_package = "com.google.crypto.tink.proto"; | ||
option java_multiple_files = true; | ||
|
||
message XAesGcmParams { | ||
// Must be at least 8 bytes and at most 12 bytes. | ||
uint32 salt_size = 1; | ||
} | ||
|
||
message XAesGcmKeyFormat { | ||
uint32 version = 1; | ||
reserved 2; | ||
XAesGcmParams params = 3; | ||
} | ||
|
||
// key_type: type.googleapis.com/google.crypto.tink.XAesGcmKey | ||
message XAesGcmKey { | ||
uint32 version = 1; | ||
XAesGcmParams params = 2; | ||
bytes key_value = 3; | ||
} |