• Home
  • Raw
  • Download

Lines Matching refs:outl

451 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,  in EVP_CipherUpdate()  argument
455 return EVP_EncryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
457 return EVP_DecryptUpdate(ctx, out, outl, in, inl); in EVP_CipherUpdate()
460 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal_ex() argument
463 return EVP_EncryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
465 return EVP_DecryptFinal_ex(ctx, out, outl); in EVP_CipherFinal_ex()
468 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_CipherFinal() argument
471 return EVP_EncryptFinal(ctx, out, outl); in EVP_CipherFinal()
473 return EVP_DecryptFinal(ctx, out, outl); in EVP_CipherFinal()
554 unsigned char *out, int *outl, in evp_EncryptDecryptUpdate() argument
575 *outl = i; in evp_EncryptDecryptUpdate()
580 *outl = 0; in evp_EncryptDecryptUpdate()
590 *outl = inl; in evp_EncryptDecryptUpdate()
593 *outl = 0; in evp_EncryptDecryptUpdate()
603 *outl = 0; in evp_EncryptDecryptUpdate()
625 *outl = bl; in evp_EncryptDecryptUpdate()
628 *outl = 0; in evp_EncryptDecryptUpdate()
634 *outl += inl; in evp_EncryptDecryptUpdate()
644 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_EncryptUpdate() argument
651 if (outl != NULL) { in EVP_EncryptUpdate()
652 *outl = 0; in EVP_EncryptUpdate()
688 *outl = soutl; in EVP_EncryptUpdate()
696 return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl); in EVP_EncryptUpdate()
699 int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal() argument
702 ret = EVP_EncryptFinal_ex(ctx, out, outl); in EVP_EncryptFinal()
706 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_EncryptFinal_ex() argument
713 if (outl != NULL) { in EVP_EncryptFinal_ex()
714 *outl = 0; in EVP_EncryptFinal_ex()
748 *outl = soutl; in EVP_EncryptFinal_ex()
761 *outl = ret; in EVP_EncryptFinal_ex()
768 *outl = 0; in EVP_EncryptFinal_ex()
777 *outl = 0; in EVP_EncryptFinal_ex()
787 *outl = b; in EVP_EncryptFinal_ex()
792 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, in EVP_DecryptUpdate() argument
800 if (outl != NULL) { in EVP_DecryptUpdate()
801 *outl = 0; in EVP_DecryptUpdate()
835 *outl = soutl; in EVP_DecryptUpdate()
856 *outl = 0; in EVP_DecryptUpdate()
859 *outl = fix_len; in EVP_DecryptUpdate()
864 *outl = 0; in EVP_DecryptUpdate()
869 return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl); in EVP_DecryptUpdate()
899 if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl)) in EVP_DecryptUpdate()
907 *outl -= b; in EVP_DecryptUpdate()
909 memcpy(ctx->final, &out[*outl], b); in EVP_DecryptUpdate()
914 *outl += b; in EVP_DecryptUpdate()
919 int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_DecryptFinal() argument
922 ret = EVP_DecryptFinal_ex(ctx, out, outl); in EVP_DecryptFinal()
926 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) in EVP_DecryptFinal_ex() argument
934 if (outl != NULL) { in EVP_DecryptFinal_ex()
935 *outl = 0; in EVP_DecryptFinal_ex()
970 *outl = soutl; in EVP_DecryptFinal_ex()
978 *outl = 0; in EVP_DecryptFinal_ex()
984 *outl = i; in EVP_DecryptFinal_ex()
994 *outl = 0; in EVP_DecryptFinal_ex()
1022 *outl = n; in EVP_DecryptFinal_ex()
1024 *outl = 0; in EVP_DecryptFinal_ex()