base4的加密算法中的一个问题
我在阅读base4的加密算法中遇到了下面这个问题,请高手赐教
请高手告诉我:数组名(逻辑表达式),这是什么意思?
例子:下面的Base64EncMap(0 and 1)这是什么意思?
<%
BASE64= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
dim Base64EncMap(63)
dim max, idx
max = len(BASE64)
for idx = 0 to max - 1
Base64EncMap(idx) = mid(BASE64, idx + 1, 1)
next
........
response.write Base64EncMap(0 and 1)&"," '这几个输出是我自己为了搞清代码response.write Base64EncMap(1 and 2)&"," '到底要干什么,而自己写上去的.
response.write Base64EncMap(2 and 3)&"," '实际上后面的参数是变量逻辑表达
response.write Base64EncMap(3 and 4)&"," '式
response.write Base64EncMap(4 and 5)&","
response.write Base64EncMap(5 and 6)&","
%>