sync with Git

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15518 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
sjplimp
2016-08-27 23:09:15 +00:00
parent a62bae7d33
commit 236241b100
39 changed files with 353 additions and 197 deletions

7
doc/utils/sha1sum.py Executable file
View File

@ -0,0 +1,7 @@
#!/bin/env python
# simple utility which reimplements sha1sum using Python
import hashlib
import sys
s = hashlib.sha1()
s.update(sys.stdin.read().encode())
print(s.hexdigest())