From f55b9814ecc6307f5f04a7955078d7951288f652 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Fri, 30 Mar 2007 11:32:47 -0700
Subject: [PATCH] chunk.py: remove unused non-tagged hash code

---
 src/allmydata/chunk.py | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/src/allmydata/chunk.py b/src/allmydata/chunk.py
index 59a2c08c..c3342bc1 100644
--- a/src/allmydata/chunk.py
+++ b/src/allmydata/chunk.py
@@ -47,8 +47,6 @@ or implied.  It probably won't make your computer catch on fire,
 or eat  your children, but it might.  Use at your own risk.
 """
 
-import sha
-
 from allmydata.util.hashutil import tagged_hash, tagged_pair_hash
 
 __version__ = '1.0.0-allmydata'
@@ -56,13 +54,6 @@ __version__ = '1.0.0-allmydata'
 BLOCK_SIZE     = 65536
 MAX_CHUNK_SIZE = BLOCK_SIZE + 4096
 
-def hash(s):
-  """
-  Cryptographic hash function used by this module.
-  """
-  return sha.new(s).digest()
-
-
 def roundup_pow2(x):
   """
   Round integer C{x} up to the nearest power of 2.
-- 
2.45.2