Lines Matching defs:out
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
44 uint8_t out[9];
45 size_t len = EVP_EncodeBlock(out, (const uint8_t*)t->decoded,
48 memcmp(out, t->encoded, len) != 0) {
50 t->decoded, (int)len, (const char*)out, t->encoded);
58 uint8_t out[6];
65 if (!EVP_DecodeBase64(out, &len, sizeof(out),
71 memcmp(out, t->decoded, len) != 0) {
73 t->encoded, (int)len, (const char*)out, t->decoded);
78 int ret = EVP_DecodeBlock(out, (const uint8_t*)t->encoded,
92 memcmp(out, t->decoded, ret) != 0) {
94 t->encoded, ret, (const char*)out, t->decoded);
99 if (EVP_DecodeBase64(out, &len, sizeof(out), (const uint8_t*)"a!bc", 4)) {
104 if (EVP_DecodeBase64(out, &len, sizeof(out), (const uint8_t*)"a=bc", 4)) {
109 if (EVP_DecodeBase64(out, &len, sizeof(out), (const uint8_t*)"abc", 4)) {