How To Install libsqlcipher0 on Ubuntu 18.04

In this tutorial we learn how to install libsqlcipher0 on Ubuntu 18.04. libsqlcipher0 is SQLCipher shared library

Introduction

In this tutorial we learn how to install libsqlcipher0 on Ubuntu 18.04.

What is libsqlcipher0

libsqlcipher0 is:

SQLCipher is a C library that implements an encryption in the SQLite 3 database engine. Programs that link with the SQLCipher library can have SQL database access without running a separate RDBMS process. It allows one to have per-database or page-by-page encryption using AES-256 from OpenSSL.

SQLCipher has a small footprint and great performance so it’s ideal for protecting embedded application databases and is well suited for mobile development.

  • as little as 5-15% overhead for encryption
  • 100% of data in the database file is encrypted
  • Uses good security practices (CBC mode, key derivation)
  • Zero-configuration and application level cryptography
  • Algorithms provided by the peer reviewed OpenSSL crypto library.

SQLCipher has broad platform support for with C/C++, Obj-C, QT, Win32/.NET/Mono, Java, Python, Ruby, Linux, Mac OS X, iPhone/iOS, Android, Xamarin.iOS, and Xamarin.Android.

SQLCipher v3.4.1 is based on SQLite3 v3.15.2.

There are three methods to install libsqlcipher0 on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libsqlcipher0 Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libsqlcipher0 using apt-get by running the following command:

sudo apt-get -y install libsqlcipher0

Install libsqlcipher0 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libsqlcipher0 using apt by running the following command:

sudo apt -y install libsqlcipher0

Install libsqlcipher0 Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libsqlcipher0 using aptitude by running the following command:

sudo aptitude -y install libsqlcipher0

How To Uninstall libsqlcipher0 on Ubuntu 18.04

To uninstall only the libsqlcipher0 package we can use the following command:

sudo apt-get remove libsqlcipher0

Uninstall libsqlcipher0 And Its Dependencies

To uninstall libsqlcipher0 and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libsqlcipher0

Remove libsqlcipher0 Configurations and Data

To remove libsqlcipher0 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libsqlcipher0

Remove libsqlcipher0 configuration, data, and all of its dependencies

We can use the following command to remove libsqlcipher0 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libsqlcipher0

References

Summary

In this tutorial we learn how to install libsqlcipher0 package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.