OpenSSL with Java

后端 未结 6 1129
栀梦
栀梦 2021-02-02 10:06

I have to use OpenSSL in a Java web project and I don\'t know anything about \'OpenSSL\'.

How can I integrate OpenSSL with my project? is there any good fundamental tuto

6条回答
  •  感动是毒
    2021-02-02 10:44

    Everyone talks about BouncyCastle, but in our use case Gnu Crypto library won the day. Native java.

    Our database ( aerospike ) spends at least 10% of its time computing hashes in java, for some customers, simply because these implementations are slow. I welcome when there's a native implementation of the crypto libraries available on every Linux machine. I thought some of the Java7 VMs were going to include more algorithms, but I haven't seen them yet.

提交回复
热议问题