How can I use openssl in Qt or CQA for symbian?

I need to use some cryptographic algorithms in my Qt project for symbian. But I could not compile QCA for my symbian environment.

  • How can I link my libcrypto.lib, which is the openssl static library for symbian for my QT application? I cannot find places to configure my QT application to receive this library.

  • Can I compile QCA for symbian? If so, how?

Hello

+3
source share
2 answers

You can link to libcrypto.lib this way in your .pro file:

symbian: {
  LIBS += -llibcrypto
}
+5
source

QCA, Symbian. , , , , ( ).

, , QCryptographicHash, MD4, MD5 SHA1.

openssl, laalto libcrypto.lib

0

Source: https://habr.com/ru/post/1720040/


All Articles