Encrypting Data With AES GCM in Rust Using Openssl
In the previous post we discussed encrypting and decrypting data with AES using the chaining technique called Cipher Block Chaining. In this post we will use AES with GCM Galois/counter mode, another block cipher mode of operation.
Just like the previous post, we will not get into the details and the implementation of GCM itself, we will use the rust APIs for it from openssl library.
Before we begin What is GCM?
Read more...