//// This rule is superseded by RSPEC-5547 //// Please consider implementing this latter instead. include::../description.adoc[] == Noncompliant Code Example ---- from pyDes import * data = "content to be encrypted" k = des("DESCRYPT", CBC, "\0\0\0\0\0\0\0\0", pad=None, padmode=PAD_PKCS5) // Noncompliant d = k.encrypt(data) ---- == Compliant Solution ---- import hashlib m = hashlib.sha256() // Compliant m.update(data) d = m.hexdigest() ---- include::../see.adoc[] ifdef::env-github,rspecator-view[] ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]