pajowu / signal-backup-decode

Decode Signal Backups
GNU General Public License v3.0
212 stars 17 forks source link

Fix tests module #34

Closed xduugu closed 3 years ago

xduugu commented 3 years ago

Compiling the tests module fails because of a missing import:

error[E0433]: failed to resolve: use of undeclared type or module aes_ctr --> src/decrypter.rs:128:6 | 128 | use aes_ctr::stream_cipher::NewStreamCipher; | ^^^^^^^ use of undeclared type or module aes_ctr

It turned out, however, that NewStreamCipher is never used. Therefore, it is sufficient to remove the problematic import line.

warning: unused import: aes_ctr::stream_cipher::NewStreamCipher --> src/decrypter.rs:128:6 128 use aes_ctr::stream_cipher::NewStreamCipher; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
xduugu commented 3 years ago

That was fast! :astonished: