Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
How to create SQL logins in FIPS compliant environment ?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Expand all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Rajeswar  
View profile  
 More options Jan 28 2010, 5:06 am
Newsgroups: microsoft.public.sqlserver.programming
From: Rajeswar <Rajes...@discussions.microsoft.com>
Date: Thu, 28 Jan 2010 02:06:01 -0800
Local: Thurs, Jan 28 2010 5:06 am
Subject: How to create SQL logins in FIPS compliant environment ?
 Hi, our objective is to make our application FIPS compliant. One of the
procedure accepts username and password as parameters and does a CREATE LOGIN
call. But with FIPS, if we pass the password to the procedure in clear text
format, it will be a violation.

Can you suggest any other method of passing the password to the procedure
and still be FIPS compliant? Or any other way to achive the same result?

Also want to know that when SQL Server Management Studio opens a connection
using sql user and password, how is the password sent to the SQL Server? Is
it in clear text? In other words, is SQL Server Management Studio FIPS
compliant?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Coles  
View profile  
 More options Jan 29 2010, 9:25 am
Newsgroups: microsoft.public.sqlserver.programming
From: "Michael Coles" <ad...@geocodenet.com>
Date: Fri, 29 Jan 2010 09:25:29 -0500
Local: Fri, Jan 29 2010 9:25 am
Subject: Re: How to create SQL logins in FIPS compliant environment ?
It seems like it should be possible to import a certificate or asymmetric
key into both SQL Server and your .NET application and use the cert/asym key
to encrypt the password before sending to the server and decrypt once it
gets there. Notice I said it "should" be possible, I haven't tried it yet.
It is an interesting question.

You can't do it with symmetric encryption (AES, Triple DES, etc.) because
SQL Server can't import and export symmetric keys. You only need the public
key of an asymmetric key pair to actually encrypt the data. It would be an
interesting proof of concept if you could make it work - you'll be limited
in what you can encrypt asymmetrically in each string though. The limit is
117 bytes of 8-bit plain text or 58 bytes of Unicode plaintext.  Probably
more than adequate for most passwords, however.

--
Thanks

Michael Coles
SQL Server MVP
Author, "Expert SQL Server 2008 Encryption"
(http://www.apress.com/book/view/1430224649)
----------------

"Rajeswar" <Rajes...@discussions.microsoft.com> wrote in message

news:72F66050-8BF0-4CB6-BE5A-FE147BB8E775@microsoft.com...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Coles  
View profile  
 More options Jan 29 2010, 12:02 pm
Newsgroups: microsoft.public.sqlserver.programming
From: "Michael Coles" <ad...@geocodenet.com>
Date: Fri, 29 Jan 2010 12:02:17 -0500
Local: Fri, Jan 29 2010 12:02 pm
Subject: Re: How to create SQL logins in FIPS compliant environment ?
Here's how you can do it:
http://sqlblog.com/blogs/michael_coles/archive/2010/01/29/encrypt-it-...

--
Thanks

Michael Coles
SQL Server MVP
Author, "Expert SQL Server 2008 Encryption"
(http://www.apress.com/book/view/1430224649)
----------------

"Rajeswar" <Rajes...@discussions.microsoft.com> wrote in message

news:72F66050-8BF0-4CB6-BE5A-FE147BB8E775@microsoft.com...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »