소스 검색

Clean up.

txlyre 3 년 전
부모
커밋
b689f23c78
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      yafn/yafn.py

+ 1 - 4
yafn/yafn.py

@@ -293,14 +293,11 @@ class Piece:
 
   @staticmethod
   def create(data):
-    hash = SHA256.new()
-    hash.update(data)
-
     parts = chunked(data, Piece.PART_SIZE)
 
     return Piece(
       time.time(),
-      hash.digest(),
+      sha256(data),
       [
         Part(
           part,