mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
10 lines
226 B
Bash
Executable file
10 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
while read line; do
|
|
echo $line
|
|
echo -n $line | md5sum | cut -d' ' -f 1
|
|
echo -n $line | sha1sum | cut -d' ' -f 1
|
|
echo -n $line | sha256sum | cut -d' ' -f 1
|
|
done < top_pwd_clear > Credential
|