]> gitweb.pimeys.fr Git - scripts-20-100.git/commitdiff
Parce que hasher à la main, c'est trop mainstream. *2*
authorVincent Le Gallic <legallic@crans.org>
Sun, 29 Sep 2013 17:01:05 +0000 (19:01 +0200)
committerVincent Le Gallic <legallic@crans.org>
Sun, 29 Sep 2013 17:01:05 +0000 (19:01 +0200)
hashmdp.sh [new file with mode: 0755]

diff --git a/hashmdp.sh b/hashmdp.sh
new file mode 100755 (executable)
index 0000000..14368fc
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+# Script pour hasher en md5 une chaîne de caractères grâce à python
+
+if [ ! $1 ]
+then
+  echo "Usage : hashmdp [-sha] une_chaine"
+  exit 1
+else
+  if [ "$1" = "-sha" ]
+  then
+    python -c "import hashlib;print hashlib.sha256('$2').hexdigest()"
+  else
+    python -c "import hashlib;print hashlib.md5('$1').hexdigest()"
+  fi
+fi