mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 15:45:23 +00:00
18 lines
187 B
Bash
Executable file
18 lines
187 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#####
|
|
|
|
#
|
|
|
|
# LDAP PASSWORD DECRYPTION SCRIPT
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#####
|
|
|
|
ENC_PASSWD=$1
|
|
|
|
echo $(echo $ENC_PASSWD | base64 -d | openssl enc -pbkdf2 -salt -d -pass pass:MYPASSPHRASE )
|
|
|