Lines Matching defs:outl
596 size_t outl;
600 || !EVP_MAC_final(mctx, mac, &outl, sizeof(mac)))
729 int outl, count, rc;
733 rc = EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
741 rc = EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
749 EVP_DecryptFinal_ex(ctx, buf, &outl);
751 EVP_EncryptFinal_ex(ctx, buf, &outl);
765 int outl, count;
775 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
780 (void)EVP_EncryptUpdate(ctx, NULL, &outl, NULL, lengths[testnum]);
782 (void)EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
786 (void)EVP_DecryptFinal_ex(ctx, buf, &outl);
788 (void)EVP_EncryptFinal_ex(ctx, buf, &outl);
802 int outl, count;
811 (void)EVP_DecryptUpdate(ctx, NULL, &outl, aad, sizeof(aad));
812 (void)EVP_DecryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
813 (void)EVP_DecryptFinal_ex(ctx, buf + outl, &outl);
818 (void)EVP_EncryptUpdate(ctx, NULL, &outl, aad, sizeof(aad));
819 (void)EVP_EncryptUpdate(ctx, buf, &outl, buf, lengths[testnum]);
820 (void)EVP_EncryptFinal_ex(ctx, buf + outl, &outl);