Hello,
I am having a problem to call a function
I am posting the code...
Can anyone help how we can solve the problem...
int AES(string path1, string path2)
{
ifstream myfile1 (path1, ios::binary);// error
ofstream myfile3 (path2, ios::binary);//error
}
int main()
{
AES( "c:/plaintext.txt" , "c:/cipheretxt.txt" );
return 0;
}