【调度系统】广东民航医疗快线调度系统源代码
wanglizhong
2025-05-05 2a11acffdd3df927be6abace9e8155e370b49681
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>测试文档</title>
</head>
 
<body>
<!--#include file="ClassCryptoAES.asp"-->
<!--#include file="SHA1.asp"-->
<%
Dim Enkey
Enkey="1eSbetpojD5hX4PqLpXkdXUdTPDs2Pmepr2gxEqnamX"
Dim cls
Set cls=new ClassCryptoAES
cls.EncodingAESKey=Enkey
'Response.Write  Cls.Decode(Cls.encode(enkey+"="))
 
Response.Write  Cls.encode("123")&"<br>"
 
Response.Write  Cls.Decode(Cls.encode(enkey+"="))
 
%>
 
</body>
</html>