The Degree of Difficulty for Mio.sign
-
16
- The
fidelityargument ranges from (0, 1) at 16 distinct points- So really, fidelity = [1, 16] in that sense
- The
-
- Get the sum of n=16 up to n=36 for n256!
Mio.signreturns its output using the numerical bases from Base16 (0-9, a-f) to Base36 (0-9, a-z)
-
n256!
- Get the permutations of n256!
- Use 256! since the signature can be any length of (0, 256] (see intervals)
- The signature's length will only be 0 for an empty string
Mio.signwill return a string with a length between (0, 256] (see intervals)
- Get the permutations of n256!
-
+ 1
- Include the empty string

