Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
thiruna
Starting Member
41 Posts |
Posted - 2004-05-26 : 05:55:24
|
| Hi,I want a script which generates readable characters encryption for the key we supply. DECLARE @key Varchar(10)DECLARE @encrypted Varchar(50)EXEC Encrypt_this_key @key, @encrypted OUTPUTSELECT @outputI would like the script to generate a encrypted key which contains only alphabets and numerics. ( e.g ) EXEC Encrypt_this_key 'thiru', @encrypted OUTPUTgives something like 'HSykdjdkd30d5KSO2fEK8Dkfhrn7fS4jk3fo7ed4'Does anyone have this kind of script already.Many thanks in advancethiru |
|
|
Kristen
Test
22859 Posts |
|
|
thiruna
Starting Member
41 Posts |
Posted - 2004-05-26 : 07:03:51
|
| Thanks Kristen,i want to reproduce the same value on decrypting this hash key, is there any script for this?thanksthiru |
 |
|
|
Kristen
Test
22859 Posts |
Posted - 2004-05-26 : 07:17:56
|
| Sorry, don't know.Kristen |
 |
|
|
|
|
|