SqlServer存储过程加密与解密

★ 加密存储过程 ★:

IF EXISTS (SELECT name FROM sysobjects WHERE name = ‘encrypt_this‘ AND type = ‘P‘)   
DROP PROCEDURE encrypt_this 
GO 
USE pubs 
GO 
CREATE PROCEDURE encrypt_this 
WITH ENCRYPTION  ---添加WITH ENCRYPTION即可 AS 
SELECT * FROM authors
GO  
--查看存储过程文本: 
EXEC sp_helptext encrypt_this 
--下面是结果集: 
--***The object‘s comments have been encrypted.  
------对象已经被加密

★ 解密存储过程 ★: 
 
***CREATE  PROCEDURE sp_decrypt(@objectName varchar(50))
AS
begin   
set nocount on 
begin tran   
declare @objectname1 varchar(100),@orgvarbin varbinary(8000) 
declare @sql1 nvarchar(4000),@sql2 varchar(8000),@sql3 nvarchar(4000),@sql4 nvarchar(4000)   
DECLARE  @OrigSpText1 nvarchar(4000),@OrigSpText2 nvarchar(4000) , @OrigSpText3 nvarchar(4000), @resultsp nvarchar(4000)   
declare  @i int,@status int,@type varchar(10),@parentid int   
declare @colid int,@n int,@q int,@j int,@k int,@encrypted int,@number int  
select @type=xtype,@parentid=parent_obj from sysobjects where id=object_id(@ObjectName)      
create table  #temp(number int,colid int,ctext varbinary(8000),encrypted int,status int)   
insert #temp SELECT number,colid,ctext,encrypted,status FROM syscomments  WHERE id = object_id(@objectName)   
select @number=max(number) from #temp   set @k=0      
while @k<[email protected]    begin   
if exists(select 1 from syscomments where id=object_id(@objectname) and [email protected])   
begin   
if @type=‘P‘   
set @sql1=(case when @number>1 then ‘ALTER PROCEDURE ‘+ @objectName +‘;‘+rtrim(@k)+‘ WITH ENCRYPTION 
AS‘else‘ALTER PROCEDURE ‘+ @objectName+‘ 
WITH ENCRYPTION AS ‘
end)  
  
   
if @type=‘TR‘  
begin   
declare @parent_obj varchar(255),@tr_parent_xtype varchar(10)   
select @parent_obj=parent_obj from sysobjects where id=object_id(@objectName)   
select @tr_parent_xtype=xtype from sysobjects where [email protected]_obj   
if @tr_parent_xtype=‘V‘   
begin   
set @sql1=‘ALTER TRIGGER ‘[email protected]+‘ ON ‘+OBJECT_NAME(@parentid)+‘ WITH ENCRYPTION INSTERD OF INSERT AS PRINT 1 ‘  
end   
else   
begin   
set @sql1=‘ALTER TRIGGER ‘[email protected]+‘ ON ‘+OBJECT_NAME(@parentid)+‘ WITH ENCRYPTION FOR INSERT AS PRINT 1 ‘   
end 
     
end

if @type=‘FN‘ or @type=‘TF‘ or @type=‘IF‘   
set @sql1=(case @type when ‘TF‘ then    
‘ALTER FUNCTION ‘+ @objectName+‘(@a char(1)) returns @b table(a varchar(10)) with encryption as begin insert @b select @a return end ‘   
when ‘FN‘ then   
‘ALTER FUNCTION ‘+ @objectName+‘(@a char(1)) returns char(1) with encryption as begin return @a end‘   
when ‘IF‘ then   ‘ALTER FUNCTION ‘+ @objectName+‘(@a char(1)) returns table with encryption as return select @a as a‘   
end)  
    
if @type=‘V‘   
set @sql1=‘ALTER VIEW ‘[email protected]+‘ WITH ENCRYPTION AS SELECT 1 as f‘      
set @q=len(@sql1)   
set @[email protected]+REPLICATE(‘-‘,[email protected])   
select @sql2=REPLICATE(‘-‘,8000)   
set @sql3=‘exec(@sql1‘   
select @colid=max(colid) from #temp where [email protected]    
set @n=1   
while @n<=CEILING(1.0*(@colid-1)/2) and len(@sQL3)<=3996   
begin    
set @[email protected]+‘[email protected]‘   
set @[email protected]+1   
end   
set @[email protected]+‘)‘   
exec sp_executesql @sql3,N‘@Sql1 nvarchar(4000),@ varchar(8000)‘,@[email protected],@[email protected]

end   
set @[email protected]+1   
end 
     
set @k=0   
while @k<[email protected]    
begin
      
if exists(select 1 from syscomments where id=object_id(@objectname) and [email protected])   
begin   
select @colid=max(colid) from #temp where [email protected]    
set @n=1 
     
while @n<[email protected]  
begin   
select @OrigSpText1=ctext,@encrypted=encrypted,@status=status FROM #temp  WHERE [email protected]and [email protected] 
SET @OrigSpText3=(SELECT ctext FROM syscomments WHERE id=object_id(@objectName) and[email protected] and [email protected])   
if @n=1   
begin   
if @type=‘P‘   
SET @OrigSpText2=(case when @number>1 then ‘CREATE PROCEDURE ‘+ @objectName +‘;‘+rtrim(@k)+‘ WITH ENCRYPTION AS ‘   
                       else ‘CREATE PROCEDURE ‘+ @objectName +‘ WITH ENCRYPTION AS ‘   
                       end)

if @type=‘FN‘ or @type=‘TF‘ or @type=‘IF‘   
SET @OrigSpText2=(case @type when ‘TF‘ then    
‘CREATE FUNCTION ‘+ @objectName+‘(@a char(1)) returns @b table(a varchar(10)) with encryption as begin insert @b select @a return end ‘   
when ‘FN‘ then   
‘CREATE FUNCTION ‘+ @objectName+‘(@a char(1)) returns char(1) with encryption as 
begin return @a end‘   
when ‘IF‘ then   
‘CREATE FUNCTION ‘+ @objectName+‘(@a char(1)) returns table with encryption as return select @a as a‘   
end)  
    
if @type=‘TR‘    
begin      
if @tr_parent_xtype=‘V‘   
begin   
set @OrigSpText2=‘CREATE TRIGGER ‘[email protected]+‘ ON ‘+OBJECT_NAME(@parentid)+‘ WITH ENCRYPTION INSTEAD OF INSERT AS PRINT 1 ‘   
end   
else   
begin   
set @OrigSpText2=‘CREATE TRIGGER ‘[email protected]+‘ ON ‘+OBJECT_NAME(@parentid)+‘ WITH ENCRYPTION FOR INSERT AS PRINT 1 ‘   
end

end 
     
if @type=‘V‘   
set @OrigSpText2=‘CREATE VIEW ‘[email protected]+‘ WITH ENCRYPTION AS SELECT 1 as f‘      
set @q=4000-len(@OrigSpText2)   
set @[email protected]+REPLICATE(‘-‘,@q)   
end   
else   
begin   
SET @OrigSpText2=REPLICATE(‘-‘, 4000)   
end   
SET @i=1 
     
SET @resultsp = replicate(N‘A‘, (datalength(@OrigSpText1) / 2))   
   
WHILE @i<=datalength(@OrigSpText1)/2   
BEGIN      
SET @resultsp = stuff(@resultsp, @i, 1, NCHAR(UNICODE(substring(@OrigSpText1, @i, 1)) ^   
                                (UNICODE(substring(@OrigSpText2, @i, 1)) ^                                   
         UNICODE(substring(@OrigSpText3, @i, 1)))))    
SET @[email protected]+1   
END   
set @orgvarbin=cast(@OrigSpText1 as varbinary(8000))   
set @resultsp=(case when @encrypted=1                        
                    then @resultsp    
                    else convert(nvarchar(4000),case when @status&2=2 then 
     uncompress(@orgvarbin) else @orgvarbin end)                  
     end)   
print @resultsp  
    
set @[email protected]+1
      
end 
     
end   
set @[email protected]+1  
end      
drop table #temp   
rollback tran   
end 
----创建存储过程sp_decrypt后,执行以下操作. 
----调用时,exec sp_decrypt ‘要解密的存储过程名‘ 
---此时 使用 exec sp_helptext ‘存储过程名‘,即可查看存储过程的文本信息

原文地址:https://www.cnblogs.com/turingchang/p/8297316.html

时间: 2024-09-28 14:37:30

SqlServer存储过程加密与解密的相关文章

SQL SERVER 2008破解加密存储过程(修正存储过程过长解密出来是空白的问题)

SQLServer2005里使用with encryption选项创建的存储过程仍然和sqlserver2000里一样,都是使用XOR进行了的加密.和2000不一样的是,在2005的系统表syscomments里已经查不到加密过的密文了.要查密文必须使用DAC(专用管理员连接)连接到数据库后,在系统表 sys.sysobjvalues查询,该表的列imageval存储了相应的密文.具体可以使用下面的查询: SELECT imageval FROM sys.sysobjvalues WHERE o

使用EncryptByPassPhrase和DecryptByPassPhrase对MS SQLServer某一字段时行加密和解密

在数据库实现加密与解密的文章,Insus.NET较早前也有写过,可以在本博客中可以搜索得到. 今天使用EncryptByPassPhrase和DecryptByPassPhrase来简单实现. 在数据库中创建一张表来演示 CREATE TABLE [dbo].[Users] ( [U_nbr] NVARCHAR(20) NOT NULL PRIMARY KEY, [Pwd] VARBINARY(MAX) ) 当用户使用注册或是添加一笔记录时,你可以使用下面的SQL语句: 当需要验证用户登录信息时

(4.16)存储过程的加密与解密

存储过程加密概念:无法查看到过程的内容,也无法邮件生成create等脚本 加密 use test go alter procedure sp_test @num int with encryption as begin select 1 union all select 2 select * from test..test1 update test..test1 set num=10,num1=10 where id = @num end 解密 Use master Go if object_I

SQLSERVER存储过程语法具体解释

SQL SERVER存储过程语法: Create PROC [ EDURE ] procedure_name [ ; number ]     [ { @parameter data_type }         [ VARYING ] [ = default ] [ OUTPUT ]     ] [ ,...n ] [ WITH     { RECOMPILE | ENCRYPTION | RECOMPILE , ENCRYPTION } ] [ FOR REPLICATION ] AS sq

SQLServer存储过程基本语法

SQLSERVER: 变量的声明:声明变量时必须在变量前加@符号DECLARE @I INT 变量的赋值:变量赋值时变量前必须加setSET @I = 30 声明多个变量:DECLARE @s varchar(10),@a INT if语句: Java代码 if .. begin ... end else if .. begin ... end else begin ... end Example: Sql代码 DECLARE @d INT set @d = 1 IF @d = 1 BEGIN

SQLSERVER存储过程语法详解

SQL SERVER存储过程语法: Create PROC [ EDURE ] procedure_name [ ; number ]     [ { @parameter data_type }         [ VARYING ] [ = default ] [ OUTPUT ]     ] [ ,...n ] [ WITH     { RECOMPILE | ENCRYPTION | RECOMPILE , ENCRYPTION } ] [ FOR REPLICATION ] AS sq

解剖SQLSERVER 第十五篇 SQLSERVER存储过程的源文本存放在哪里?(译)

解剖SQLSERVER 第十五篇  SQLSERVER存储过程的源文本存放在哪里?(译) http://improve.dk/where-does-sql-server-store-the-source-for-stored-procedures/ 目前我正在扩展OrcaMDF Studio的功能 不单只支持系统表,DMVs 和用户表 而且也要支持存储过程.那很容易,我们只需要查询sys.procedures --或者查询sys.sysschobjs, 因为当SQLSERVER没有在运行的时候我

SQLServer - 存储过程基本语法

oracle的建表sql转成sqlserver的建表sql时的注意点 : 1.所有的comment语句需要删除. 2.clob类型转换为text类型. 3.blob类型转换为image类型. 4.number类型转换为int,number(16,2)等转换为decimal(16,2),number(18)转换为bigint. 5.default sysdate改为default getDate(). 6.to_date('2009-12-18','yyyy-mm-dd')改为cast('2009

Java DES 加密和解密源码

Java密码学结构设计遵循两个原则: 1) 算法的独立性和可靠性. 2) 实现的独立性和相互作用性. 算法的独立性是通过定义密码服务类来获得.用户只需了解密码算法的概念,而不用去关心如何实现这些概念.实现的独立性和相互作用性通过密码服务提供器来实现.密码服务提供器是实现一个或多个密码服务的一个或多个程序包.软件开发商根据一定接口,将各种算法实现后,打包成一个提供器,用户可以安装不同的提供器.安装和配置提供器,可将包含提供器的ZIP和JAR文件放在CLASSPATH下,再编辑Java安全属性文件来