EVP_CipherUpdate
if (!EVP_CipherUpdate(kari->ctx, NULL, &outlen, in, inlen))
if (!EVP_CipherUpdate(kari->ctx, out, &outlen, in, inlen))
EVP_CipherUpdate(ctx->cipher_ctx,
EVP_CipherUpdate(ctx->cipher_ctx,
int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
LCRYPTO_ALIAS(EVP_CipherUpdate);
LCRYPTO_USED(EVP_CipherUpdate);
if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen)) {
if (EVP_CipherUpdate(encr->encr_ctx, NULL, &olen, in, inlen) != 1) {
if (EVP_CipherUpdate(encr->encr_ctx, out, &olen, in, inlen) != 1) {
if (EVP_CipherUpdate(ctx, outtext, &len, serialpdu, pdulen) &&
if (EVP_CipherUpdate(ctx, outbuf, &len, inbuf, inlen) &&