encryption
-
Not the excryptrion at the level of 'e-com site'. But I am in need to excrypt/decrypt my data. The requirement goes like this, the user will get the mails with links in it. I dont want to reveal the params, that are contained in the mails. So these need to be encrypted, and get decrypted when they enter my page in 'click of the URL'. Is there anything avaulable in the ASP / jscripts for this????? Thanks in advance! I was born intelligent
Education ruined me!. -
Not the excryptrion at the level of 'e-com site'. But I am in need to excrypt/decrypt my data. The requirement goes like this, the user will get the mails with links in it. I dont want to reveal the params, that are contained in the mails. So these need to be encrypted, and get decrypted when they enter my page in 'click of the URL'. Is there anything avaulable in the ASP / jscripts for this????? Thanks in advance! I was born intelligent
Education ruined me!.Don't know if you've looked at .NET, but there are loads of useful tools in the System.Security.Cryptography namespace that should do pretty much whatever you need. From block encrytion, stream encryption or hashing alogorithms of various kinds, its got the lot. Quote from a clever bloke : "I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones." - Albert Einstein
-
Don't know if you've looked at .NET, but there are loads of useful tools in the System.Security.Cryptography namespace that should do pretty much whatever you need. From block encrytion, stream encryption or hashing alogorithms of various kinds, its got the lot. Quote from a clever bloke : "I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones." - Albert Einstein
Giles wrote: Don't know if you've looked at .NET But.... I need the stuffs right now in simple ASP or JScripts only.... Thanks for ur reply I was born intelligent
Education ruined me!. -
Not the excryptrion at the level of 'e-com site'. But I am in need to excrypt/decrypt my data. The requirement goes like this, the user will get the mails with links in it. I dont want to reveal the params, that are contained in the mails. So these need to be encrypted, and get decrypted when they enter my page in 'click of the URL'. Is there anything avaulable in the ASP / jscripts for this????? Thanks in advance! I was born intelligent
Education ruined me!.I used this a while back on an ASP project to encrypt path names so the user couldn't see them. It's in ASP. http://www.4guysfromrolla.com/webtech/012000-1.shtml[^]
-
I used this a while back on an ASP project to encrypt path names so the user couldn't see them. It's in ASP. http://www.4guysfromrolla.com/webtech/012000-1.shtml[^]
will give it a try. Thanks I was born intelligent
Education ruined me!. -
I used this a while back on an ASP project to encrypt path names so the user couldn't see them. It's in ASP. http://www.4guysfromrolla.com/webtech/012000-1.shtml[^]
This is really good, and works fine. Thanks! I was born intelligent
Education ruined me!. -
Not the excryptrion at the level of 'e-com site'. But I am in need to excrypt/decrypt my data. The requirement goes like this, the user will get the mails with links in it. I dont want to reveal the params, that are contained in the mails. So these need to be encrypted, and get decrypted when they enter my page in 'click of the URL'. Is there anything avaulable in the ASP / jscripts for this????? Thanks in advance! I was born intelligent
Education ruined me!.Hi SPS, Try some simple JavaScript Encryption (i.e.,) obfuscation trick. Try this URL: http://dev.krook.org/cipher.html Deepak Kumar Vasudevan http://deepak.portland.co.uk/
-
Hi SPS, Try some simple JavaScript Encryption (i.e.,) obfuscation trick. Try this URL: http://dev.krook.org/cipher.html Deepak Kumar Vasudevan http://deepak.portland.co.uk/
Will look int it. Thanks for the reply! I was born intelligent
Education ruined me!.