From f8996e9871afb1557d8b08f33fa7031baa049746 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Sat, 6 Mar 2010 18:54:32 +0100 Subject: Remplaced sha256 by sha1. --- feedgetter.py | 1 - utils.py | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/feedgetter.py b/feedgetter.py index 432d603e..9df12080 100644 --- a/feedgetter.py +++ b/feedgetter.py @@ -11,7 +11,6 @@ __license__ = "GPLv3" import re import sqlite3 -import hashlib import threading import feedparser diff --git a/utils.py b/utils.py index c6bbcb0c..012f8bfc 100644 --- a/utils.py +++ b/utils.py @@ -154,11 +154,11 @@ def load_feed(): if list_of_articles is not None: for article in list_of_articles: - sha256_hash = hashlib.sha256() - sha256_hash.update(article[5].encode('utf-8')) - feed_id = sha256_hash.hexdigest() - sha256_hash.update(article[2].encode('utf-8')) - article_id = sha256_hash.hexdigest() + sha1_hash = hashlib.sha1() + sha1_hash.update(article[5].encode('utf-8')) + feed_id = sha1_hash.hexdigest() + sha1_hash.update(article[2].encode('utf-8')) + article_id = sha1_hash.hexdigest() if article[3] != "": language = detect_language(remove_html_tags(article[3][:80]).encode('utf-8') + \ -- cgit