aead-gcm-stream 0.3.0

Pure Rust implementaion of AES GCM cipher for data streams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# aead-gcm-stream

Pure Rust implementaion of AES GCM cipher for data streams.

![image](https://github.com/littledivy/aead-stream/assets/34997667/938c39c1-aa0e-4858-8304-e3f67c1fd83a)

```rust
use aead_gcm_stream::AesGcm;
use aes::Aes128;

let mut cipher = AesGcm::<Aes128>::new(&key);
cipher.init(nonce);

cipher.encrypt(&mut data);

let tag = cipher.final();
```