I need to rewrite one package to C# and Im stucked with this cryptography function
l_DEcrypted := dbms_crypto.DEcrypt
( src => l_ssn,
typ => DBMS_CRYPTO.DES_CBC_PKCS5,
key => G_KEY );
Any ideas, how to write code with same output in C#?
1 Answer