Liking cljdoc? Tell your friends :D

pwdprotect.core


decrypt-passwordclj

(decrypt-password etext passw)

Decrypts given encrypted text in base64 form using a String password as decryption key. Returns string of a plain text.

Decrypts given encrypted text in base64 form using a String password as decryption key.
Returns string of a plain text.
raw docstring

decrypt-password-in-lineclj

(decrypt-password-in-line line decryption-password)

decrypts structure like (PROTECTED-DATA "Ua5T4UPIntu9GFvquVduDe4VV/Yg18dOG1n7sp5U5kw=") using given decryption-password. returns a String with plain text.

decrypts structure like (PROTECTED-DATA "Ua5T4UPIntu9GFvquVduDe4VV/Yg18dOG1n7sp5U5kw=") using given decryption-password.
returns a String with plain text.
raw docstring

decrypt-passwords-in-fileclj

(decrypt-passwords-in-file file-name passwd)

Decrypt all passwords in text file marked as (PROTECTED-DATA "Ua5T4UPIntu9GFvquVduDe4VV/Yg18dOG1n7sp5U5kw=") using given password. Return body of file as string with plain passwords.

Decrypt all passwords in text file marked as (PROTECTED-DATA "Ua5T4UPIntu9GFvquVduDe4VV/Yg18dOG1n7sp5U5kw=")
using given password.
Return body of file as string with plain passwords.
raw docstring

encrypt-password-in-lineclj

(encrypt-password-in-line line encryption-password)

encrypts structure like (ENCRYPT-THIS "some passw") using given encryption-password. returns a new String with encrypted sensitive field.

encrypts structure like (ENCRYPT-THIS "some passw") using given encryption-password.
returns a new String with encrypted sensitive field.
raw docstring

encrypt-passwords-in-fileclj

(encrypt-passwords-in-file file-name passwd)

Encrypts all passwords in text file marked as (ENCRYPT-THIS "mystrongpassword") using given password. Old file will be overwritten with secured passwords. returns nil.

Encrypts all passwords in text file marked as (ENCRYPT-THIS "mystrongpassword") using given password.
Old file will be overwritten with secured passwords.
returns nil.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close