View Single Post
  #4  
Old 12-15-2016, 01:50 AM
Zaela_S
Hill Giant
 
Join Date: Jun 2012
Posts: 216
Default

For the time being... I wrote my own implementation, compiled and tested on an rpi 3b: libeqemucrypto.so (armv7l).

I used libcrypto from openssl where the official version uses cryptopp, so you'll need to make sure you have openssl on your pi (sudo apt get libssl? can never remember package names...) and if you're using cmake you'll want to put the lib in the specified EQEMU_UNIX_ENC_LIBRARY_LOC directory and change the CMakeLists.txt under $SOURCEDIR/loginserver:

Code:
63,64c63,64
< 	TARGET_LINK_LIBRARIES(loginserver "EQEmuAuthCrypto")
< 	TARGET_LINK_LIBRARIES(loginserver "cryptopp")
---
> 	TARGET_LINK_LIBRARIES(loginserver "eqemucrypto")
> 	TARGET_LINK_LIBRARIES(loginserver "crypto")
Reply With Quote