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
459c73af
Commit
459c73af
authored
5 years ago
by
Jean-Paul Calderone
Browse files
Options
Downloads
Patches
Plain Diff
docs
parent
15e49c7d
No related branches found
Branches containing commit
No related tags found
1 merge request
!43
Add some more docs
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/_zkapauthorizer/storage_common.py
+25
-3
25 additions, 3 deletions
src/_zkapauthorizer/storage_common.py
with
25 additions
and
3 deletions
src/_zkapauthorizer/storage_common.py
+
25
−
3
View file @
459c73af
# 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.
"""
Functionality shared between the storage client and server.
"""
from
base64
import
(
from
base64
import
(
b64encode
,
b64encode
,
...
@@ -15,6 +32,8 @@ def _message_maker(label):
...
@@ -15,6 +32,8 @@ def _message_maker(label):
)
)
return
make_message
return
make_message
# Functions to construct the PrivacyPass request-binding message for pass
# construction for different Tahoe-LAFS storage operations.
allocate_buckets_message
=
_message_maker
(
u
"
allocate_buckets
"
)
allocate_buckets_message
=
_message_maker
(
u
"
allocate_buckets
"
)
add_lease_message
=
_message_maker
(
u
"
add_lease
"
)
add_lease_message
=
_message_maker
(
u
"
add_lease
"
)
renew_lease_message
=
_message_maker
(
u
"
renew_lease
"
)
renew_lease_message
=
_message_maker
(
u
"
renew_lease
"
)
...
@@ -29,10 +48,13 @@ def required_passes(bytes_per_pass, share_nums, share_size):
...
@@ -29,10 +48,13 @@ def required_passes(bytes_per_pass, share_nums, share_size):
Calculate the number of passes that are required to store ``stored_bytes``
Calculate the number of passes that are required to store ``stored_bytes``
for one lease period.
for one lease period.
:param int
stored_bytes: A
number of bytes
of
storage f
or
which
to
:param int
bytes_per_pass: The
number of bytes
the
storage
o
f which
for
calculate a
pri
ce in passe
s.
one lease
p
e
ri
od one pass cover
s.
:return int: The number of passes.
:param set[int] share_nums: The share numbers which will be stored.
:param int share_size: THe number of bytes in a single share.
:return int: The number of passes required to cover the storage cost.
"""
"""
return
int
(
return
int
(
ceil
(
ceil
(
...
...
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