用SQL实现的BASE64加密及解密函数(SQL2005以上有效)
CREATE FUNCTION [dbo].[f_base64_encode] (@bin varbinary(max)) returns varchar(max) as begin return cast(N'' as xml).value('xs:base64Binary(xs:hexBinary(sql:variable("@bin")))', 'varchar(max)') end GO CREATE FUNCTION [dbo].[f_base64_decode] (@64 varchar(max)) returns varbinary(max) as begin return cast(N'' as xml).value('xs:base64Binary(sql:variable("@64"))', 'varbinary(max)') end GO
版权声明: 本文为博主 网无忌 原创文章,欢迎转载,但请务必标注原文链接。