Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fuchsia.googlesource.com-third_party-tink
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
fuchsia.googlesource.com-third_party-tink
Commits
1602585a
Commit
1602585a
authored
5 years ago
by
tanujdhir
Committed by
Copybara-Service
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
CLIF the StreamingAead primitive.
PiperOrigin-RevId: 268436776
parent
6f0c41bb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cc/python/streaming_aead.clif
+30
-0
30 additions, 0 deletions
cc/python/streaming_aead.clif
with
30 additions
and
0 deletions
cc/python/streaming_aead.clif
0 → 100644
+
30
−
0
View file @
1602585a
# 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.
from "tink/python/util/clif.h" import * # StatusOr
from "tink/cc/streaming_aead.h":
namespace `crypto::tink`:
# Interface for streaming authenticated encryption with associated data.
# Streaming encryption is typically used for encrypting large plaintexts
# such as large files. This interface supports a streaming interface for
# symmetric encryption with authentication. The underlying encryption modes
# are selected so that partial plaintext can be obtained fast by decrypting
# and authenticating just a part of the ciphertext.
class StreamingAead:
# Intentionally empty.
#
# The cliffed CC primitive's only purpose is to be stored as a member
# variable and later be passed to a wrapper function (which sidesteps
# cliffing an OutputStream). Therefore Python doesn't need to know about
# its methods, just that it exists.
pass
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment