]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/evp/e_des3.c
Add ossl_is_partially_overlapping symbol
[thirdparty/openssl.git] / crypto / evp / e_des3.c
index 9d143d3bd54f783cdd1036f65c3c4e693b9e95c2..f85d520eb6fe546813b4dbef55395be8ff2d15ca 100644 (file)
@@ -397,7 +397,7 @@ static int des_ede3_wrap_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
     if (inl >= EVP_MAXCHUNK || inl % 8)
         return -1;
 
-    if (is_partially_overlapping(out, in, inl)) {
+    if (ossl_is_partially_overlapping(out, in, inl)) {
         ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
         return 0;
     }