Skip to content

Commit

Permalink
SQUASH Back propagation is complicated
Browse files Browse the repository at this point in the history
  • Loading branch information
cjpatton committed Oct 10, 2024
1 parent f52d6b3 commit 4e9ff43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions poc/vdaf_poc/xof.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def derive_seed(cls,
Pre-conditions:
- `len(seed) == Xof.SEED_SIZE`
- `len(seed) == cls.SEED_SIZE`
"""
xof = cls(seed, dst, binder)
return xof.next(cls.SEED_SIZE)
Expand Down Expand Up @@ -97,7 +97,7 @@ def expand_into_vec(cls,
Pre-conditions:
- `field` is sub-class of `Field`
- `len(seed) == Xof.SEED_SIZE`
- `len(seed) == cls.SEED_SIZE`
- `length > 0`
"""
xof = cls(seed, dst, binder)
Expand Down

0 comments on commit 4e9ff43

Please sign in to comment.