"make depend"
[oweals/openssl.git] / crypto / evp / evp_pbe.c
index cac4f941df95ad3c0d8962c0a47f65d163d090f3..02ae151cf47c5a86c5619a5e5c40c703116a8c39 100644 (file)
@@ -57,8 +57,8 @@
  */
 
 #include <stdio.h>
-#include "evp.h"
-#include "x509.h"
+#include <openssl/evp.h>
+#include <openssl/x509.h>
 #include "cryptlib.h"
 
 /* Password based encryption (PBE) functions */
@@ -95,7 +95,7 @@ int EVP_PBE_CipherInit (ASN1_OBJECT *pbe_obj, const char *pass, int passlen,
                ERR_add_error_data(2, "TYPE=", obj_tmp);
                return 0;
        }
-       if (passlen == -1) passlen = strlen((char *)pass);
+       if (passlen == -1) passlen = strlen(pass);
        pbetmp = (EVP_PBE_CTL *)sk_value (pbe_algs, i);
        i = (*pbetmp->keygen)(pass, passlen, salt, saltlen, iter,
                                         pbetmp->cipher, pbetmp->md, key, iv);