On Thursday, May 10, 2018 at 12:56:27 PM UTC-4, Sree wrote: > > Hi Jeff, > I have to use CBC with CST for AES algorithm. as I did not find any > library to support it even like Cryptoswift I have to look for crypto++. I > generated the libcryptopp.a file, I am getting no such file error for the > last step. is there something wrong with it. > > > clang++ -o cryptest.exe -DNDEBUG -g2 -Os -fPIC -pipe -Wall > -miphoneos-version-min=7 -arch arm64 -isysroot > /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk > > -stdlib=libc++ -ffunction-sections -fdata-sections adhoc.o test.o bench1.o > bench2.o validat0.o validat1.o validat2.o validat3.o datatest.o regtest.o > fip salgt.o dlltest.o ./libcryptopp.a -Wl,-dead_strip > > clang: *error: *no such file or directory: 'regtest.o' > > clang: *error: *no such file or directory: 'fip' > > clang: *error: *no such file or directory: 'salgt.o' >
regtest.o is old Crypto++ from the Crypto++ 5.6.2 days. I'm guessing its coming from GNUmakefile-cross when it was a separate download. Update to the latest version of the library. All the files are now part of the library. You may need to fetch them from GitHub if they are missing from the ZIP file. fips and salgt.o sounds like something from your project. Jeff -- You received this message because you are subscribed to "Crypto++ Users". More information about Crypto++ and this group is available at http://www.cryptopp.com and http://groups.google.com/forum/#!forum/cryptopp-users. --- 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.
