Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to encrypt password in MsSQL

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

It is believed that many inexperienced people have no idea about how to encrypt passwords in MsSQL. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

In fact, as long as you take a closer look at master.dbo.sp_addlogin, you can see the code in MSSQL's sp, which is really good.

Let's see how it works. Notice the line select @ passwd = pwdencrypt (@ passwd). Then @ passwd is encrypted. Let's give it a try.

DECLARE @ ClearPWD varchar

DECLARE @ EncryptedPWD varbinary

SELECT @ ClearPWD = 'test'

SELECT @ EncryptedPWD = CONVERT (varbinary (255), pwdencrypt (@ ClearPWD))

SELECT @ EncryptedPWD

It looks good, it is encrypted, but how can I restore it?

Ha ha, this is hopeless, password encryption is one-way, with encrypted ciphertext to compare it.

If you continue to look at other user-related sp, you can find that there is a password comparison in master.dbo.sp_password.

Pwdcompare (@ old, password, (CASE WHEN xstatus&2048 = 2048 THEN 1 ELSE 0 END))

Don't worry about xstatus, this is a status mask, usually we can just use 0 when we use it.

DECLARE @ ClearPWD varchar

DECLARE @ EncryptedPWD varbinary

SELECT @ ClearPWD = 'test'

SELECT @ EncryptedPWD = CONVERT (varbinary (255), pwdencrypt (@ ClearPWD))

SELECT pwdcompare (@ ClearPWD, @ EncryptedPWD, 0)

SELECT pwdcompare ('ErrorPassword', @ EncryptedPWD, 0)

After reading the above, have you mastered how to encrypt passwords in MsSQL? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report