Skip to content

Commit

Permalink
More explanation for in/output domains
Browse files Browse the repository at this point in the history
  • Loading branch information
myl7 committed Jun 27, 2024
1 parent 7e4f2bf commit 0b6d71b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ pub mod utils;
/// The actual meaning of the 2 elements is determined by the context.
///
/// - `IN_BLEN` is the **byte** length of the size of the input domain.
/// - `OUT_BLEN` is the **byte** length of the size of the output domain. `$\lambda$` (but the byte length).
/// `$n$` or `$\lceil \log_2 |\mathbb{G}^{in}| \rceil$` (but the byte length).
/// - `OUT_BLEN` is the **byte** length of the size of the output domain.
/// `$\lambda$` or `$\lceil \log_2 |\mathbb{G}^{out}| \rceil$` (but the byte length).
pub struct PointFn<const IN_BLEN: usize, const OUT_BLEN: usize, G>
where
G: Group<OUT_BLEN>,
Expand Down

0 comments on commit 0b6d71b

Please sign in to comment.