快速经典 ASP 加密

发布于 2024-12-02 04:54:47 字数 227 浏览 0 评论 0原文

我有这个函数(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小耗子 2024-12-09 04:54:47

对于字符串操作,我发现 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")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文