pwdDecrypt: A function to decrypt a package that is encrypted using this...

Usage Arguments Author(s) References See Also Examples

Usage

1
pwdDecrypt(encrypted_password, key)

Arguments

encrypted_password

The encrypted password created with the pwdEncrypt function.

key

The key that is used to decrypt the encrypted password.

Author(s)

Arie Twigt

References

https://cran.r-project.org/web/packages/PKI/index.html

See Also

createPwdKey pwdEncrypt, ~~~

Examples

1
2
3
4
5
6
7
8
# create a key
key <- createPwdKey()

# create an encrypted password with the key
encrypted_password <- pwdEncrypt("Welcome1!", key)

# decrypt an encrypted password
decrypted_password <- pwdDecrypt(encrypted_password, key)

ArieTwigt/passwordEncryptR documentation built on May 30, 2019, 7:58 p.m.