Reputation: 89
I have a table whose data has been encrypted I forgot the key used to encrypt data how do I know the key used in my table?
select aes_decrypt (unhex ("905650A03048950FA2EF67837425E8E6"), "key") from user_tbl
Upvotes: 0
Views: 484
Reputation: 161
You simply cannot decipher without the key.
The only way is to find out what was the key.
Or wait for some genious out there to break the algorithm. Can take decades or never happen.
I'm sorry I don't have any other answer to give you.
Upvotes: 1