Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
ZKAPAuthorizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Administrator
ZKAPAuthorizer
Commits
eea43443
Commit
eea43443
authored
5 years ago
by
Jean-Paul Calderone
Browse files
Options
Downloads
Patches
Plain Diff
docs
parent
bbc1fcf4
No related branches found
Branches containing commit
No related tags found
1 merge request
!43
Add some more docs
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/_zkapauthorizer/tests/fixtures.py
+18
-0
18 additions, 0 deletions
src/_zkapauthorizer/tests/fixtures.py
src/_zkapauthorizer/tests/privacypass.py
+33
-0
33 additions, 0 deletions
src/_zkapauthorizer/tests/privacypass.py
with
51 additions
and
0 deletions
src/_zkapauthorizer/tests/fixtures.py
+
18
−
0
View file @
eea43443
# Copyright 2019 PrivateStorage.io, 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.
"""
Common fixtures to let the test suite focus on application logic.
"""
from
__future__
import
(
from
__future__
import
(
absolute_import
,
absolute_import
,
)
)
...
...
This diff is collapsed.
Click to expand it.
src/_zkapauthorizer/tests/privacypass.py
+
33
−
0
View file @
eea43443
# Copyright 2019 PrivateStorage.io, 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.
"""
Ristretto-flavored PrivacyPass helpers for the test suite.
"""
from
__future__
import
(
from
__future__
import
(
absolute_import
,
absolute_import
,
)
)
...
@@ -8,6 +26,21 @@ from privacypass import (
...
@@ -8,6 +26,21 @@ from privacypass import (
)
)
def
make_passes
(
signing_key
,
for_message
,
random_tokens
):
def
make_passes
(
signing_key
,
for_message
,
random_tokens
):
"""
Create a number of cryptographically correct privacy passes.
:param privacypass.SigningKey signing_key: The key to use to sign the
passes.
:param unicode for_message: The request-binding message with which to
associate the passes.
:param list[privacypass.RandomToken] random_tokens: The random tokens to
feed in to the pass generation process.
:return list[unicode]: The privacy passes. The returned list has one
element for each element of ``random_tokens``.
"""
blinded_tokens
=
list
(
blinded_tokens
=
list
(
token
.
blind
()
token
.
blind
()
for
token
for
token
...
...
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