Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > How to encrypt SSN in querystring?

Reply
Thread Tools

How to encrypt SSN in querystring?

 
 
Jeff
Guest
Posts: n/a
 
      06-09-2010
Hi

asp.net 4.0
visual studio 2010

I'm developing a website which will have ssn included in the querystring.
Are looking for ways to encrypt it.
Have thought about using System.Security.Cryptography namespace. But haven't
decided on which class to use. Considering X509Certificate. Also I think the
url have to SSL.

Thinking of encrypt the entire querystring, parameter name and parameer
value gets encrypted.

any recommendations?


 
Reply With Quote
 
 
 
 
Mr. Arnold
Guest
Posts: n/a
 
      06-09-2010
Jeff wrote:
> Hi
>
> asp.net 4.0
> visual studio 2010
>
> I'm developing a website which will have ssn included in the querystring.
> Are looking for ways to encrypt it.
> Have thought about using System.Security.Cryptography namespace. But haven't
> decided on which class to use. Considering X509Certificate. Also I think the
> url have to SSL.
>
> Thinking of encrypt the entire querystring, parameter name and parameer
> value gets encrypted.
>
> any recommendations?
>
>


You need to come up with something else. There would be no way I would
come to your site with you using a SSN in the URL encrypted or not or
SSL, not in today's environment and identity theift.

 
Reply With Quote
 
 
 
 
Stefan Hoffmann
Guest
Posts: n/a
 
      06-09-2010
hi Jeff,

On 09.06.2010 19:07, Jeff wrote:
> I'm developing a website which will have ssn included in the querystring.
> Are looking for ways to encrypt it.
> Have thought about using System.Security.Cryptography namespace. But haven't
> decided on which class to use. Considering X509Certificate. Also I think the
> url have to SSL.
>
> Thinking of encrypt the entire querystring, parameter name and parameer
> value gets encrypted.
>
> any recommendations?

Use SSL, any other "encryption" can be broken. Use AJAX, if you want to
hide the information from the user.


mfG
--> stefan <--
 
Reply With Quote
 
Rajeev Gopal
Guest
Posts: n/a
 
      06-10-2010
On Jun 9, 1:45*pm, Stefan Hoffmann <ste...@ste5an.de> wrote:
> hi Jeff,
>
> On 09.06.2010 19:07, Jeff wrote:> I'm developing a website which will have ssn included in the querystring.
> > Are looking for ways to encrypt it.
> > Have thought about using System.Security.Cryptography namespace. But haven't
> > decided on which class to use. Considering X509Certificate. Also I think the
> > url have to SSL.

>
> > Thinking of encrypt the entire querystring, parameter name and parameer
> > value gets encrypted.

>
> > any recommendations?

>
> Use SSL, any other "encryption" can be broken. Use AJAX, if you want to
> hide the information from the user.
>
> mfG
> --> stefan <--


Hi Jeff,

Better not to send SSN via querystring. For that matter, it is adviced
not to plug in any sensitive data in querystring. There could be
alternatives for sure.

Thanks,
Rajeev
 
Reply With Quote
 
Cubaman
Guest
Posts: n/a
 
      06-11-2010
On Jun 9, 7:07*pm, "Jeff" <it_consulta...@hotmail.com.NOSPAM> wrote:
> Hi
>
> asp.net 4.0
> visual studio 2010
>
> I'm developing a website which will have ssn included in the querystring.
> Are looking for ways to encrypt it.
> Have thought about using System.Security.Cryptography namespace. But haven't
> decided on which class to use. Considering X509Certificate. Also I think the
> url have to SSL.
>
> Thinking of encrypt the entire querystring, parameter name and parameer
> value gets encrypted.
>
> any recommendations?


Hello:
Don't use query string. The spec for URL length does not dictate a
minimum or maximum URL length, but implementation varies by browser.
On Windows: Opera supports ~4050 characters, IE 4.0+ supports exactly
2083 characters, Netscape 3 -> 4.78 support up to 8192 characters
before causing errors on shut-down, and Netscape 6 supports ~2000
before causing errors on start-up. Encrypted SSN would be bigger than
this max length. Try to use post instead. And use ssl, it would
encrypt the whole page.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
remove dash in ssn with sprintf Carson C Programming 19 08-10-2006 05:04 PM
must I surrender SSN to sell photos? peter Digital Photography 77 05-31-2005 01:49 AM
SSN Dmitri Shvetsov ASP .Net 0 04-06-2004 11:27 PM
Encrypt in Perl, De-encrypt in Javascript http://ejobseek.com Perl Misc 3 09-01-2003 07:34 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57