mirror of https://github.com/OpenIPC/firmware.git
add netip password hash generator (#1881)
parent
af4557fad2
commit
26c0a66091
|
@ -66,6 +66,10 @@ case "$CMD" in
|
||||||
echo -e " recorded - $(fw_printenv -n sensor)\n"
|
echo -e " recorded - $(fw_printenv -n sensor)\n"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
netip_hash)
|
||||||
|
echo -n "$@" | md5sum | fold -w 2 | awk 'NR<17{printf "%d\n", "0x"$0}' | sed 'N;s/\n/ /' | awk '{c=($1+$2)%62; if (c<10) c+=48; else if (c<36) c+=55; else c+=61; printf "%c", c}'
|
||||||
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
extutils
|
Loading…
Reference in New Issue