OpenSSL using EVP vs. algorithm API for symmetric crypto

前端 未结 2 1402
生来不讨喜
生来不讨喜 2020-12-12 22:53

Hi i have installed openssl on my linux machine and going through the header files and documentation (which is highly insufficint :( ).

i am trying to build a projec

2条回答
  •  盖世英雄少女心
    2020-12-12 23:45

    Currently OpenSSL wiki has good documentation on how to use the EVP family of functions: http://wiki.openssl.org/index.php/EVP

    The other upside of using the EVP over algorithm API is that EVP will automatically use hardware acceleration (like AES-NI instruction set) if available. With algorithm API you need to enable it manually.

提交回复
热议问题