mirror of
https://github.com/zkemail/zk-email-verify.git
synced 2026-01-09 21:48:14 -05:00
16 lines
211 B
Plaintext
16 lines
211 B
Plaintext
pragma circom 2.1.6;
|
|
|
|
|
|
function EMAIL_ADDR_MAX_BYTES() {
|
|
return 256;
|
|
}
|
|
|
|
function DOMAIN_MAX_BYTES() {
|
|
return 255;
|
|
}
|
|
|
|
// Field support maximum of ~253 bit
|
|
function MAX_BYTES_IN_FIELD() {
|
|
return 31;
|
|
}
|