QuasarApp / Qt-Secret

Simple encryption library supporting RSA and AES algorithms.
https://quasarapp.ddns.net:3031/docs/QuasarApp/Qt-Secret/latest/index.html
GNU Lesser General Public License v3.0
243 stars 69 forks source link

using QRSAEncryption signMessage #103

Closed jhay06 closed 10 months ago

jhay06 commented 1 year ago

Hi any way we can create Sha256withRSA using QRSaencryption ? is this posible just want to create jwt token without using ssl library

paipeng commented 1 year ago

Hello,

can we verify Java-Sha256withRSA using QRSaencryption?

After testing, the "Sha256withRSA" byte array is different.

I have a signautre signed by Java, and want to verify it under Qt-Secret.

Thanks

Regards,

Pai

jhay06 commented 10 months ago

still no answer u think the project is dead

EndrII commented 10 months ago

@jhay06 almost yes. I drop support of this project, because it is not secure. I was created a new library with support an RSA and ECDSA encryption/authorization algorithms

The easyssl it is a wrapper of the OpenSSL library. With easy interfaces for Qt. see my doxygen documentation and example.

jhay06 commented 10 months ago

@jhay06 almost yes. I drop support of this project, because it is not secure. I was created a new library with support an RSA and ECDSA encryption/authorization algorithms

The easyssl it is a wrapper of the OpenSSL library. With easy interfaces for Qt. see my doxygen documentation and example.

i see, but im looking for the library which is not dependent on openssl library since im targetting cross platform . hmm , would you mind if i ask a question ? it is related on RSA , what kind of private key and public key does QRSA supports ? i tried pem file , it doesn't work .

EndrII commented 10 months ago

@jhay06 almost yes. I drop support of this project, because it is not secure. I was created a new library with support an RSA and ECDSA encryption/authorization algorithms The easyssl it is a wrapper of the OpenSSL library. With easy interfaces for Qt. see my doxygen documentation and example.

i see, but im looking for the library which is not dependent on openssl library since im targetting cross platform . hmm , would you mind if i ask a question ? it is related on RSA , what kind of private key and public key does QRSA supports ? i tried pem file , it doesn't work .

Your case with crossplatform may be solved using the EASYSSL_STATIC_SSL option. Please see EasySSL documentation to get more information.