#385 issue resolved

replaced md5 hashing algorithm with sha-256 hashing algorithm
This commit is contained in:
S Dheeraj 2023-11-19 22:09:34 +05:30
parent 0facfdbd56
commit dc5fa842c0
2 changed files with 2 additions and 2 deletions

View file

@ -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;