Home > Database > Mysql Tutorial > sql2005 HashBytes 加密函数

sql2005 HashBytes 加密函数

WBOY
Release: 2016-06-07 17:59:18
Original
1561 people have browsed it

在做项目的时候,在sql中使用了hashbytes函数,运用md5算法去加密一密码。

有关函数HashBytes请参考:

  在做项目的时候,在sql中使用了hashbytes函数,运用md5算法去加密一密码。代码如下

  DECLARE @psw (20)
  SET @psw = 'admin'
  SELECT hashbytes('md5',@psw)

  输出结果:0x19A2854144B63A8F7617A6F225019B12 前面的 0x 是16进制的意思。

  现在改变一下变量@psw的类型

  DECLARE @psw varchar(20)
  SET @psw = 'admin'
  SELECT hashbytes('md5',@psw)

  输出结果:0x21232F297A57A5A743894A0E4A801FC3

  数据类型的不同得到了不同结果。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template