


paip. Cross-platform and cross-language custom encryption method
Today we are mainly going to transfer parameters between ASP and PHP system modules. For convenience, MD5 signature is not needed and we are ready to use it directly
DES encryption. . However, ASP and PHP's DES cannot encrypt each other. . . Fortunately, there are other CBC modes, IV vectors, etc.
. There are a lot of them. After adjusting them for a long time, it still doesn't work. Forget it, let's write the encryption method by ourselves. .
The main method of password encryption is substitution and shifting. . In addition, my requirement is that the key must be used, and the algorithm
Simple. . The DES algorithm looks like a big deal at first glance, MD is difficult to use. PASS. . . Although the effect is good, it is a bit complicated and difficult to rewrite
. .
Here, I have conceived the idea of encryption:
1. Reverse the string first
2. Add the string and KEY group in a loop
3. The added results are converted into hexadecimal characters and concatenated. . Mainly to save some space. .
4. Just return the result. . .
5. The decryption process can be reversed. .
dim key_L71723
key_L71723="iluvnjyn"
dim msg
msg="admin"
dim newstr
newstr=atiEncode(msg,key_L71723)
response.Write(newstr) 'Show the encryption result is D7D5E2DACF
response.Write( atiDecode(newstr,key_L71723) )
---------------------------------------------
function atiEncode(msg,key)
msg=back_str(msg) 'Reverse string
dim key_L71723
key_L71723= key
key_L71723=key_L71723+key_L71723
key_L71723=key_L71723+key_L71723
Key_L71723=key_L71723+key_L71723
dim msgarr
msgarr=str2array(msg)
dim keyarr
keyarr=str2array(key_L71723)
dim newstr
newstr=""
'Perform cyclic addition with KEY group
for i=0 to ubound(msgarr)
dim char
char=msgarr(i)
dim newchar 'int format
newchar = asc (char)+asc(keyarr(i))
newchar= hex(newchar)
newstr=newstr+cstr(newchar)
next
atiEncode=newstr
end function
function atiDecode(msg,key)
dim key_L71723
key_L71723= key
key_L71723=key_L71723+key_L71723
key_L71723=key_L71723+key_L71723
Key_L71723=key_L71723+key_L71723
dim msgarr
msgarr=str2arrayx(msg,2)
dim keyarr
keyarr=str2array(key_L71723)
dim newstr
newstr=""
for i=0 to ubound(msgarr)
dim charInt
charInt=chn10(msgarr(i) ) 'encode char
dim newchar www.2cto.com
newchar=chr( charInt-ascw(keyarr(i)))
newstr=newstr+newchar
next
newstr=back_str(newstr)
atiDecode=newstr
end function
Author:attilax

如何进行C++代码的数据校验?在编写C++代码时,数据校验是非常重要的一环。通过对用户输入的数据进行校验,可以增强程序的健壮性和安全性。本文将介绍一些常见的数据校验方法和技巧,帮助读者有效地进行C++代码的数据校验。输入数据类型检查在对用户输入的数据进行处理之前,首先要检查输入数据的类型是否符合要求。例如,如果需要接收用户的整数输入,那么需要确保用户输入的是

随着智能设备的不断普及,越来越多的应用程序需要同时兼容多种不同的平台,例如Android、iOS、Web等。为了满足这样的需求,跨平台开发逐渐成为了一种趋势。而使用Go语言和ReactNative构建跨平台通用应用程序也变得越来越流行。在本文中,我们将分享一些在这一过程中的最佳实践。了解Go语言和ReactNative的基础知识在开始构建跨平台通用应用程

Vue.js与Dart语言的集成,构建跨平台移动应用的思路在移动应用开发领域,跨平台的开发框架得到了越来越多的关注。Vue.js是一种用于构建用户界面的JavaScript框架,而Dart语言是由Google开发的一种用于构建跨平台应用的语言。本文将探讨如何将Vue.js与Dart语言集成,以构建跨平台移动应用。一、Vue.js简介Vue.js被认为是一种轻

如何解决PHP开发中的跨平台兼容性问题,需要具体代码示例随着互联网的发展,PHP作为一种广泛应用的Web开发语言,被越来越多的开发者所选择和使用。然而,PHP作为一种跨平台的编程语言,常常面临着不同操作系统和环境下的兼容性问题。本文将介绍一些解决PHP开发中跨平台兼容性问题的方法,并给出具体的代码示例。使用跨平台的库和框架要解决PHP开发中的跨平台兼容性问题

C#作为一种广泛应用于软件开发领域的编程语言,在跨平台兼容性和适配性方面具有一定的优势和挑战。本文将就C#开发中的跨平台兼容性和适配性问题进行探讨,以帮助开发者更好地应对跨平台开发。首先,我们来介绍C#的跨平台兼容性。传统上,C#主要应用于Windows平台上,因为它是与Microsoft.NETFramework紧密结合的语言。然而,随着技术的不断发展

C++是一种功能强大的编程语言,它广泛应用于各种领域的软件开发中。然而,由于不同操作系统的差异,C++开发人员经常面临一个问题:如何进行跨平台C++开发?本文将分享一些C++开发经验,帮助您在跨平台开发中取得成功。了解目标平台特性首先,您需要了解目标平台的特性和限制。不同操作系统的API、文件系统和网络通信等都有所差异。因此,在进行跨平台开发之前,首先要对目

Go语言的跨平台能力为开发者带来了更高的生产力和竞争优势作为一门开源的编程语言,Go语言以其简洁的语法、高效的执行速度和出色的并发特性在开发者中越来越受欢迎。而其中最吸引人的特点之一就是其极佳的跨平台能力。无论是在Windows、Linux还是macOS平台上,开发者都可以轻松地编写、构建和运行Go语言程序,这为他们带来了更高的生产力和竞争优势。Go语言的跨

如何利用ReactNative构建跨平台移动应用引言:随着移动应用市场的蓬勃发展,开发者需要快速将应用部署到多个平台上。ReactNative是一个强大的工具,可以帮助开发者使用单一代码库构建跨平台移动应用。本文将介绍ReactNative的基本概念,并提供一些具体代码示例,以帮助读者了解如何利用ReactNative构建跨平台移动应用。一、Reac


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
