# 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::::new(&key); cipher.init(nonce); cipher.encrypt(&mut data); let tag = cipher.final(); ```