SQL Server Authentication using encrypted password -
i keeping sql server password in clear text, security threat now.
i replace encrypted password. don't know whether sql server accepts encrypted password or not. or if there other solution it.
any on appreciated.
lokesh
sql server requires password specified in connection string set in plain text. if password stored encrypted, connection string can dynamically created , password decrypted use in connection string.
to keep password safe @ network level, things such ssl based connections sql server or ipsec can leveraged provide protocol safety.
http://technet.microsoft.com/en-us/library/bb742429.aspx
http://technet.microsoft.com/en-us/library/ms189067(v=sql.105).aspx
Comments
Post a Comment