快速经典 ASP 加密
我有这个函数(COM+)对象可以完成所有加密,但是当它一次收到太多请求时,它会出错并崩溃。我总是收到“Page On End Error”之类的错误,所以我想知道,经典 ASP 中最快的加密(强)工具是什么?
我很确定 ASP.NET 有内置的加密功能,但想知道是否可以通过经典 ASP 访问它,以及它是否会稳定而不会在超过时返回错误?
加密强度需要为 128-256 位 AES 或 Triple-Des。
I have this function (COM+) object that does all the encryption, but when it get's too many requests at once, it error's out and crashes. I get errors like 'Page On End Error' and stuff like that always, so I'm wondering, what's the fastest Encryption (strong) tool out there for Encryption in Classic ASP?
I'm pretty sure ASP.NET has a built-in encryption function, but wondering if this can be accessed via Classic ASP, and if it will be stable without returning errors when over-?
The encyption strength needs to be 128-256 bit AES or Triple-Des.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于字符串操作,我发现 JavaScript 工作得更好,ASP 的伟大之处在于您可以使用多种语言。
对于 AES 加密,您可以使用 ecmaScrypt,而不是将文件保存为 .js,而是将其保存为 . asp 并在文件顶部添加
并在文件末尾添加
,现在您有一个服务器端AES 库,您可以将其包含在任何 ASP 文件中并正常调用它。
IE
Encrypt("somestring", "your key here")
For string manipulation I have found JavaScript to work better, the great thing about ASP is you can use multiple languages.
For AES encryption you can use ecmaScrypt, instead of saving the file as .js, save it as .asp and add
<script language="JScript" runat="server">
at the top of the file and</script>
at the end, you now have a server side AES library, which you can include in any ASP file and call it normally.I.E.
Encrypt("somestring", "your key here")