]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost341194.py
Move hexdigest implementation to common PEP247 class
[pygost.git] / pygost / gost341194.py
index 90a5f8243940f66e0866e470c29511438f66d884..adc0925f6e53e32cbbb909dfc978f9b08dd87530 100644 (file)
@@ -180,9 +180,6 @@ class GOST341194(PEP247):
         h = _step(h, checksum, self.sbox)
         return h[::-1]
 
-    def hexdigest(self):
-        return hexenc(self.digest())
-
 
 def new(data=b"", sbox=DEFAULT_SBOX):
     return GOST341194(data, sbox)