Decrypt Password using BP Encrypt object

Kkonanki2826

New Member
Hi,
I was trying to decrypt the password using Encryption object but it seems there is an error showing up when i try to decrypt it. Here is the error details.
"The specified initialization vector (IV) does not match the block size for this algorithm".
This is the encrypted value i was using at the time testing: "
"dhRXdnZSVyM=:mLSzic+g/ljf5XEbbrz74Q=="

I am using default encryption scheme with application server location.

Can someone help me with this please.

Thanks in advance.
 

ewilson

Member
What password are you trying to decrypt? If it's a password for a credential in Credential Manager you can just used the embedded Credential object to the gat the value of a password. Just copy it to a Text data item.

What you're showing there doesn't exactly look like an encrypted string. Actually, it looks like a Base64 encoded string. If it is an encrypted string you would also need the encryption key to decrypt it.
 
Top