>
> #include <iostream>
> #include <cryptopp/integer.h>
> using namespace CryptoPP;
> int main(){
> a_exp_b_mod_c(1, 2, 3);
> return 0;
> }For some reason this is not compiling for me, the error message is: test.cpp: In function ‘int main()’: > test.cpp:7:23: error: ‘a_exp_b_mod_c’ was not declared in this scope > a_exp_b_mod_c(1, 2, 3); When compiled under clang, it shows an error message which I assume is basically the same thing: test.cpp:7:2: error: use of undeclared identifier 'a_exp_b_mod_c' > a_exp_b_mod_c(1, 2, 3); > ^ > 1 error generated. Am I missing something? I included the CryptoPP namespace, and integer,h contains a definition for the function. --JH -- -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
