#385 issue resolved
replaced md5 hashing algorithm with sha-256 hashing algorithm
This commit is contained in:
parent
0facfdbd56
commit
dc5fa842c0
2 changed files with 2 additions and 2 deletions
2
src/cache/redis_cacher.rs
vendored
2
src/cache/redis_cacher.rs
vendored
|
@ -3,7 +3,7 @@
|
|||
|
||||
use error_stack::Report;
|
||||
use futures::future::try_join_all;
|
||||
use md5::compute;
|
||||
use sha256::digest;
|
||||
use redis::{aio::ConnectionManager, AsyncCommands, Client, RedisError};
|
||||
|
||||
use super::error::CacheError;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue