Ask a Question related to ASP.NET Security, Design and Development.
-
David Smith #1
Encryption using X.509
I have writen a class that uses certificates to encrypt
data on my web servers prior to storing it in a database
and would like to know if there are any flaws associated
with this design. I chose this because there are no keys
to manage in configuration files and certificates are
already in use for web service security using WSE 2.0. It
takes a string and encrypts it and passes back the
ecrypted string for storage in the database. Web servers
have the public key for encryption while the backend
servers (not public facing) have the public and private
keys which can be used for encrypting and decrypting the
data for various processes.
David Smith Guest
-
128 Bit AES Encryption
Hi All, Is it possible to implement 128 bit AES encryption in coldfusion 5.0? Regards cfdyn -
Encryption
What 3rd party softwares are available for physically encrypting SQL server databases, either individual columns or rows? We have researched a few,... -
URL Encryption
Hi, Is there a way to securely ecrypt and decrypte a URL? for e.g encrypting and decrypting using Triple-DES algorithm. Are there any security... -
Need help with encryption
Hi I i'm working on a web site that will save customer info some of this info needs to be encrypted in the db. I will need to encrypt when... -
IDS 9.40.UC2, Encryption
I try to configure encryption with IDS 9.40.UC2 on an AIX platform and I'm a little bit confused about the different error messages I receive. ... -
Joe Kaplan \(MVP - ADSI\) #2
Re: Encryption using X.509
Generally, RSA encryption is only used for encrypting small pieces of data
(11 bits less than the key length) such as a symmetric encryption key. So,
this might work for small strings, but probably isn't a good idea for large
data.
For large data, you typically encrypt with a symmetric algorithm and then
store the symmetric key encrypted via RSA so that you can decrypt the
symmetric key with the RSA private key then perform the rest of the
decryption.
Joe K.
"David Smith" <smith.wd@gmail.com> wrote in message
news:0db001c53a4a$a5b04230$a501280a@phx.gbl...>I have writen a class that uses certificates to encrypt
> data on my web servers prior to storing it in a database
> and would like to know if there are any flaws associated
> with this design. I chose this because there are no keys
> to manage in configuration files and certificates are
> already in use for web service security using WSE 2.0. It
> takes a string and encrypts it and passes back the
> ecrypted string for storage in the database. Web servers
> have the public key for encryption while the backend
> servers (not public facing) have the public and private
> keys which can be used for encrypting and decrypting the
> data for various processes.
Joe Kaplan \(MVP - ADSI\) Guest



Reply With Quote

