Home
last modified time | relevance | path

Searched refs:ZX_STR_ENDS_IN_CONST (Results 1 – 2 of 2) sorted by relevance

/dports/security/p5-Net-SAML/zxid-1.42/
H A Dzxsig.c607 if ( ZX_STR_ENDS_IN_CONST(algo, "#sha1")) { in zxsig_validate()
610 } else if (ZX_STR_ENDS_IN_CONST(algo, "#sha224")) { in zxsig_validate()
613 } else if (ZX_STR_ENDS_IN_CONST(algo, "#sha256")) { in zxsig_validate()
616 } else if (ZX_STR_ENDS_IN_CONST(algo, "#sha384")) { in zxsig_validate()
619 } else if (ZX_STR_ENDS_IN_CONST(algo, "#sha512")) { in zxsig_validate()
622 } else if (ZX_STR_ENDS_IN_CONST(algo, "#md5")) { in zxsig_validate()
666 if ( ZX_STR_ENDS_IN_CONST(algo, "#rsa-sha1")) { in zxsig_validate()
674 } else if (ZX_STR_ENDS_IN_CONST(algo, "#dsa-sha1")) { in zxsig_validate()
681 } else if (ZX_STR_ENDS_IN_CONST(algo, "#ecdsa-sha1")) { in zxsig_validate()
777 } else if (ZX_STR_ENDS_IN_CONST(algo, "#rsa-md5")) { in zxsig_validate()
[all …]
H A Dzx.h193 #define ZX_STR_ENDS_IN_CONST(ss, suffix) zx_str_ends_in((ss), sizeof(suffix)-1, (suffix)) macro