Lines Matching refs:outl
465 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_CipherUpdate() argument
469 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
471 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
474 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument
477 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
479 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
482 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument
485 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal()
487 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal()
568 unsigned char *out, int *outl, in evp_EncryptDecryptUpdate() argument
589 *outl = i; in evp_EncryptDecryptUpdate()
594 *outl = 0; in evp_EncryptDecryptUpdate()
604 *outl = inl; in evp_EncryptDecryptUpdate()
607 *outl = 0; in evp_EncryptDecryptUpdate()
617 *outl = 0; in evp_EncryptDecryptUpdate()
639 *outl = bl; in evp_EncryptDecryptUpdate()
642 *outl = 0; in evp_EncryptDecryptUpdate()
648 *outl += inl; in evp_EncryptDecryptUpdate()
658 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_EncryptUpdate() argument
665 if (ossl_likely(outl != NULL)) { in EVP_EncryptUpdate()
666 *outl = 0; in EVP_EncryptUpdate()
702 *outl = soutl; in EVP_EncryptUpdate()
710 return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl); in EVP_EncryptUpdate()
713 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal() argument
716 ret = EVP_EncryptFinal_ex(ctx, out, outl); in EVP_EncryptFinal()
720 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal_ex() argument
727 if (outl != NULL) { in EVP_EncryptFinal_ex()
728 *outl = 0; in EVP_EncryptFinal_ex()
762 *outl = soutl; in EVP_EncryptFinal_ex()
775 *outl = ret; in EVP_EncryptFinal_ex()
782 *outl = 0; in EVP_EncryptFinal_ex()
791 *outl = 0; in EVP_EncryptFinal_ex()
801 *outl = b; in EVP_EncryptFinal_ex()
806 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() argument
814 if (ossl_likely(outl != NULL)) { in EVP_DecryptUpdate()
815 *outl = 0; in EVP_DecryptUpdate()
849 *outl = soutl; in EVP_DecryptUpdate()
870 *outl = 0; in EVP_DecryptUpdate()
873 *outl = fix_len; in EVP_DecryptUpdate()
878 *outl = 0; in EVP_DecryptUpdate()
883 return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl); in EVP_DecryptUpdate()
913 if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl)) in EVP_DecryptUpdate()
921 *outl -= b; in EVP_DecryptUpdate()
923 memcpy(ctx->final, &out[*outl], b); in EVP_DecryptUpdate()
928 *outl += b; in EVP_DecryptUpdate()
933 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_DecryptFinal() argument
936 ret = EVP_DecryptFinal_ex(ctx, out, outl); in EVP_DecryptFinal()
940 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_DecryptFinal_ex() argument
948 if (outl != NULL) { in EVP_DecryptFinal_ex()
949 *outl = 0; in EVP_DecryptFinal_ex()
984 *outl = soutl; in EVP_DecryptFinal_ex()
992 *outl = 0; in EVP_DecryptFinal_ex()
998 *outl = i; in EVP_DecryptFinal_ex()
1008 *outl = 0; in EVP_DecryptFinal_ex()
1036 *outl = n; in EVP_DecryptFinal_ex()