How to install openssl cryptographic library on Lubuntu

19,489

How to install openssl cryptographic library on Lubuntu

Use:

sudo apt-get install libssl-dev

Also see What is “openssl binaries” and “openssl development package”? on the Ubuntu Stack Exchange.


... they refer to the openssl lib for ubuntu, debian ad libssl-dev

Yep.

Share:
19,489

Related videos on Youtube

refex
Author by

refex

Updated on September 18, 2022

Comments

  • refex
    refex almost 2 years

    I'm trying to build cryptsetup 1.6.8 (or 1.7.0) from source using the openssl libraries instead of libgcrypt.

    ./configure --with-crypto_backend=openssl
    

    I did install libssl-dev but it still gives me this error:

    configure: error: You need openssl library.
    

    Have I to install some others libraries? I searched on the web and everywhere they refer to the openssl lib for ubuntu, debian ad libssl-dev

  • refex
    refex over 8 years
    I did that but it does not resolve the issue...
  • jww
    jww over 8 years
    @Raffaele - Well, I'm not sure... Your question was, "How to install openssl cryptographic library on Lubuntu". Perhaps you should open another question.
  • refex
    refex over 8 years
    you're right, I forgot to mention that I'm compiling cryptsetup and it tells me configure: error: You need openssl library. even after installing libssl-dev
  • refex
    refex over 8 years
    Update: if you want to compile cryptsetup with openssl backend, be sure to install pkg-config in addition to libssl-dev.