I have an unencrypted/unencoded string - "565040574"
. I also have the encrypted/encoded string for this string - "BSubW2AUWrSCL7dk9ucoiA=="
.
It looks like this string has been Base64ed after encryption, but I don't know which encryption algorithm has been used. If I convert "BSubW2AUWrSCL7dk9ucoiA==" string to bytes using Convert.FromBase64String("BSubW2AUWrSCL7dk9ucoiA==")
, I get 16 bytes.
Is there anything using which I can know what type of encryption has been used to encrypt the "565040574"
to "BSubW2AUWrSCL7dk9ucoiA=="
?