Lines Matching refs:outl
210 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() argument
214 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
216 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
219 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument
222 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
224 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
227 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument
230 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal()
232 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal()
299 unsigned char *out, int *outl, in evp_EncryptDecryptUpdate() argument
316 *outl = 0; in evp_EncryptDecryptUpdate()
331 *outl = i; in evp_EncryptDecryptUpdate()
342 *outl = inl; in evp_EncryptDecryptUpdate()
345 *outl = 0; in evp_EncryptDecryptUpdate()
355 *outl = 0; in evp_EncryptDecryptUpdate()
378 *outl = bl; in evp_EncryptDecryptUpdate()
381 *outl = 0; in evp_EncryptDecryptUpdate()
387 *outl += inl; in evp_EncryptDecryptUpdate()
397 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_EncryptUpdate() argument
406 return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl); in EVP_EncryptUpdate()
409 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal() argument
412 ret = EVP_EncryptFinal_ex(ctx, out, outl); in EVP_EncryptFinal()
416 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal_ex() argument
432 *outl = ret; in EVP_EncryptFinal_ex()
439 *outl = 0; in EVP_EncryptFinal_ex()
449 *outl = 0; in EVP_EncryptFinal_ex()
459 *outl = b; in EVP_EncryptFinal_ex()
464 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() argument
488 *outl = 0; in EVP_DecryptUpdate()
500 *outl = 0; in EVP_DecryptUpdate()
503 *outl = fix_len; in EVP_DecryptUpdate()
508 return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl); in EVP_DecryptUpdate()
538 if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl)) in EVP_DecryptUpdate()
546 *outl -= b; in EVP_DecryptUpdate()
548 memcpy(ctx->final, &out[*outl], b); in EVP_DecryptUpdate()
553 *outl += b; in EVP_DecryptUpdate()
558 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_DecryptFinal() argument
561 ret = EVP_DecryptFinal_ex(ctx, out, outl); in EVP_DecryptFinal()
565 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_DecryptFinal_ex() argument
576 *outl = 0; in EVP_DecryptFinal_ex()
583 *outl = i; in EVP_DecryptFinal_ex()
594 *outl = 0; in EVP_DecryptFinal_ex()
622 *outl = n; in EVP_DecryptFinal_ex()
624 *outl = 0; in EVP_DecryptFinal_ex()