Need Equivalent Python Script from JS
Please help me convert below JS code to Python. const di_digest = CryptoJS.SHA1(di_plainTextDigest).toString(CryptoJS.enc.Base64); di_plainTextDigest is a String. I tried a few Python methods, but they do not work: result = hashlib.sha1(di_plainTextDigest.encode()) hexd = result.hexdigest() hexd_ascii = hexd.encode("ascii") dig2 = base64.b64encode(hexd_ascii) dig3 = dig2.decode("ascii") print(dig3 ) >Solution : To replicate the functionality of the JavaScript code… Read More Need Equivalent Python Script from JS