1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 10:19:27 +02:00

Upgrade aes-ctr to latest aes

This commit is contained in:
Roderick van Domburg 2022-01-08 20:51:51 +01:00
parent a33014f9c5
commit 89a5133bd7
No known key found for this signature in database
GPG key ID: A9EF5222A26F0451
7 changed files with 18 additions and 50 deletions

View file

@ -8,9 +8,9 @@ use std::{
task::{Context, Poll},
};
use aes_ctr::{
use aes::{
cipher::generic_array::GenericArray,
cipher::{NewStreamCipher, SyncStreamCipher},
cipher::{NewCipher, StreamCipher},
Aes128Ctr,
};
use futures_core::Stream;