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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
from types import CodeType import dis import sys from myalgo import * import re import struct import binascii class RC4: def __init__(self, key: bytes): """\n 初始化 RC4 类\n :param key: 密钥,字节类型\n """ self.key = key self.s = list(range(256)) self._ksa() def _ksa(self): """\n 密钥调度算法 (Key Scheduling Algorithm, KSA)\n """ j = 0 key_length = len(self.key) for i in range(256): j = (j + self.s[i] + self.key[i % key_length]) % 256 self.s[i], self.s[j] = (self.s[j], self.s[i]) def _prga(self): """\n 伪随机数生成算法 (Pseudo-Random Generation Algorithm, PRGA)\n :yield: 生成的伪随机字节\n """ i = j = 0 while True: i = (i + 1) % 256 j = (j + self.s[i]) % 256 self.s[i], self.s[j] = (self.s[j], self.s[i]) yield self.s[(self.s[i] + self.s[j]) % 256] def encrypt(self, plaintext: bytes) -> bytes: """\n 加密明文\n :param plaintext: 明文,字节类型\n :return: 密文,字节类型\n """ keystream = self._prga() return bytes([p ^ next(keystream) for p in plaintext]) def decrypt(self, ciphertext: bytes) -> bytes: """\n 解密密文\n :param ciphertext: 密文,字节类型\n :return: 明文,字节类型\n """ return self.encrypt(ciphertext) class ArrangeSimpleDES: def __init__(self): self.ip = [58, 50, 42, 34, 26, 18, 10, 2, 60, 52, 44, 36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6, 64, 56, 48, 40, 32, 24, 16, 8, 57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35, 27, 19, 11, 3, 61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31, 23, 15, 7] self.ip1 = [40, 8, 48, 16, 56, 24, 64, 32, 39, 7, 47, 15, 55, 23, 63, 31, 38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45, 13, 53, 21, 61, 29, 36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11, 51, 19, 59, 27, 34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49, 17, 57, 25] self.E = [32, 1, 2, 3, 4, 5, 4, 5, 6, 7, 8, 9, 8, 9, 10, 11, 12, 13, 12, 13, 14, 15, 16, 17, 16, 17, 18, 19, 20, 21, 20, 21, 22, 23, 24, 25, 24, 25, 26, 27, 28, 29, 28, 29, 30, 31, 32, 1] self.P = [16, 7, 20, 21, 29, 12, 28, 17, 1, 15, 23, 26, 5, 18, 31, 10, 2, 8, 24, 14, 32, 27, 3, 9, 19, 13, 30, 6, 22, 11, 4, 25] self.K = '0111010001101000011010010111001101101001011100110110100101110110' self.k1 = [57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36, 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4] self.k2 = [14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10, 23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37, 47, 55, 30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32] self.k0 = [1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1] self.S = [[14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7, 0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 4, 1, 14, 8, 3, 10, 5, 0, 15, 12, 8, 2, 4, 9, 14, 12, 5, 0, 14, 10, 6, 6, 4, 2, 1, 10, 6, 3, 11, 5, 1, 10, 14, 5, 6, 4, 2, 1, 13, 1, 10, 6, 3, 11, 6, 4, 2, 1, 13, 3, 8, 10, 6, 1, 11, def __substitution(self, table: str, self_table: list) -> str: """\n :param table: 需要进行置换的列表,是一个01字符串\n :param self_table: 置换表,在__init__中初始化了\n :return: 返回置换后的01字符串\n """ sub_result = '' for i in self_table: sub_result += table[i - 1] return sub_result def str2bin(self, string: str) -> str: """\n 将明文转为二进制字符串:\n :param string: 任意字符串\n :return:二进制字符串\n """ plaintext_list = list(bytes(string, 'utf8')) result = [] for num in plaintext_list: result.append(bin(num)[2:].zfill(8)) return ''.join(result) def bin2str(self, binary: str) -> str: """\n 二进制字符串转成字符串\n :param binary:\n :return:\n """ list_bin = [binary[i:i + 8] for i in range(0, len(binary), 8)] list_int = [] for b in list_bin: list_int.append(int(b, 2)) result = bytes(list_int).decode() return result def __bin2int(self, binary: str) -> list: """\n 由于加密之后的二进制无法直接转成字符,有不可见字符在,utf8可能无法解码,所以需要将二进制字符串每8位转成int型号列表,用于转成bytes再转hex\n :param binary: 二进制字符串\n :return: int型列表\n """ list_bin = [binary[i:i + 8] for i in range(0, len(binary), 8)] list_int = [] for b in list_bin: list_int.append(int(b, 2)) return list_int def __int2bin(self, list_int: list) -> str: result = [] for num in list_int: result.append(bin(num)[2:].zfill(8)) return ''.join(result) def __get_block_list(self, binary: str) -> list: """\n 对明文二进制串进行切分,每64位为一块,DES加密以64位为一组进行加密的\n :type binary: 二进制串\n """ len_binary = len(binary) if len_binary % 64!= 0: binary_block = binary + '0' * (64 - len_binary % 64) return [binary_block[i:i + 64] for i in range(0, len(binary_block), 64)] else: return [binary[j:j + 64] for j in range(0, len(binary), 64)] def modify_secretkey(self): """\n 修改默认密钥函数\n :return: None\n """ print('当前二进制形式密钥为:{}'.format(self.K)) print('当前字符串形式密钥为:{}'.format(self.bin2str(self.K))) newkey = input('输入新的密钥(长度为8):') if len(newkey)!= 8: print('密钥长度不符合,请重新输入:') self.modify_secretkey() else: bin_key = self.str2bin(newkey) self.K = bin_key print('当前二进制形式密钥为:{}'.format(self.K)) def __f_funtion(self, right: str, key: str): """\n :param right: 明文二进制的字符串加密过程的右半段\n :param key: 当前轮数的密钥\n :return: 进行E扩展,与key异或操作,S盒操作后返回32位01字符串\n """ e_result = self.__substitution(right, self.E) xor_result = self.__xor_function(e_result, key) s_result = self.__s_box(xor_result) p_result = self.__substitution(s_result, self.P) return p_result def __get_key_list(self): """\n :return: 返回加密过程中16轮的子密钥\n """ key = self.__substitution(self.K, self.k1) left_key = key[0:28] right_key = key[28:56] keys = [] for i in range(1, 17): move = self.k0[i - 1] move_left = left_key[move:28] + left_key[0:move] move_right = right_key[move:28] + right_key[0:move] left_key = move_left right_key = move_right move_key = left_key + right_key ki = self.__substitution(move_key, self.k2) keys.append(ki) return keys def __xor_function(self, xor1: str, xor2: str): """\n :param xor1: 01字符串\n :param xor2: 01字符串\n :return: 异或操作返回的结果\n """ size = len(xor1) result = '' for i in range(0, size): result += '0' if xor1[i] == xor2[i] else '1' return result def __s_box(self, xor_result: str): """\n :param xor_result: 48位01字符串\n :return: 返回32位01字符串\n """ result = '' for i in range(0, 8): block = xor_result[i * 6:(i + 1) * 6] line = int(block[0] + block[5], 2) colmn = int(block[1:5], 2) res = bin(self.S[i][line * 16 + colmn])[2:] if len(res) < 4: res = '0' * (4 - len(res)) + res result += res return result def __iteration(self, bin_plaintext: str, key_list: list): """\n :param bin_plaintext: 01字符串,64位\n :param key_list: 密钥列表,共16个\n :return: 进行F函数以及和left异或操作之后的字符串\n """ left = bin_plaintext[0:32] right = bin_plaintext[32:64] for i in range(0, 16): next_lift = right f_result = self.__f_funtion(right, key_list[i]) next_right = self.__xor_function(left, f_result) left = next_lift right = next_right bin_plaintext_result = left + right return bin_plaintext_result[32:] + bin_plaintext_result[:32] def encode(self, plaintext): """\n :param plaintext: 明文字符串\n :return: 密文字符串\n """ bin_plaintext = self.str2bin(plaintext) bin_plaintext_block = self.__get_block_list(bin_plaintext) ciphertext_bin_list = [] key_list = self.__get_key_list() for block in bin_plaintext_block: sub_ip = self.__substitution(block, self.ip) ite_result = self.__iteration(sub_ip, key_list) sub_ip1 = self.__substitution(ite_result, self.ip1) ciphertext_bin_list.append(sub_ip1) ciphertext_bin = ''.join(ciphertext_bin_list) result = self.__bin2int(ciphertext_bin) return bytes(result).hex().upper() def decode(self, ciphertext): """\n :param ciphertext: 密文字符串\n :return: 明文字符串\n """ b_ciphertext = binascii.a2b_hex(ciphertext) bin_ciphertext = self.__int2bin(list(b_ciphertext)) bin_plaintext_list = [] key_list = self.__get_key_list() key_list = key_list[::(-1)] bin_ciphertext_block = [bin_ciphertext[i:i + 64] for i in range(0, len(bin_ciphertext), 64)] for block in bin_ciphertext_block: sub_ip = self.__substitution(block, self.ip) ite = self.__iteration(sub_ip, key_list) sub_ip1 = self.__substitution(ite, self.ip1) bin_plaintext_list.append(sub_ip1) bin_plaintext = ''.join(bin_plaintext_list).replace('00000000', '') return self.bin2str(bin_plaintext) _a85chars = None _a85chars2 = None _A85START = b'<~' _A85END = b'~>' bytes_types = (bytes, bytearray) def _bytes_from_decode_data(s): if isinstance(s, str): try: return s.encode('ascii') except UnicodeEncodeError: raise ValueError('string argument should contain only ASCII characters') else: if isinstance(s, bytes_types): return s else: try: return memoryview(s).tobytes() except TypeError: raise TypeError('argument should be a bytes-like object or ASCII string, not %r' % s.__class__.__name__) from None def b64decode(s, altchars=None, validate=False): """Decode the Base64 encoded bytes-like object or ASCII string s.\n\n Optional altchars must be a bytes-like object or ASCII string of length 2\n which specifies the alternative alphabet used instead of the \'+\' and \'/\'\n characters.\n\n The result is returned as a bytes object. A binascii.Error is raised if\n s is incorrectly padded.\n\n If validate is False (the default), characters that are neither in the\n normal base-64 alphabet nor the alternative alphabet are discarded prior\n to the padding check. If validate is True, these non-alphabet characters\n in the input result in a binascii.Error.\n """ s = _bytes_from_decode_data(s) if altchars is not None: altchars = _bytes_from_decode_data(altchars) assert len(altchars) == 2, repr(altchars) s = s.translate(bytes.maketrans(altchars, b'+/')) if validate and (not re.fullmatch(b'[A-Za-z0-9+/]*={0,2}', s)): raise binascii.Error('Non-base64 digit found') else: return binascii.a2b_base64(s) def a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\x0b'): """\n """ b = _bytes_from_decode_data(b) if adobe: if not b.endswith(_A85END): raise ValueError('Ascii85 encoded byte sequences must end with {!r}'.format(_A85END)) else: if b.startswith(_A85START): b = b[2:(-2)] else: b = b[:(-2)] packI = struct.Struct('!I').pack decoded = [] decoded_append = decoded.append curr = [] curr_append = curr.append curr_clear = curr.clear for x in b + b'uuuu': if 33 <= x <= 117: curr_append(x) if len(curr) == 5: acc = 0 for x in curr: acc = 85 * acc + (x - 33) try: decoded_append(packI(acc)) except struct.error: raise ValueError('Ascii85 overflow') from None curr_clear() if x == 122: if curr: raise ValueError('z inside Ascii85 5-tuple') else: decoded_append(b'\x00\x00\x00\x00') else: if foldspaces and x == 121: if curr: raise ValueError('y inside Ascii85 5-tuple') else: decoded_append(b' ') else: if x in ignorechars: continue else: raise ValueError('Non-Ascii85 digit found: %c' % x) payload = MX.__code__.co_code magic_code1 = b'?' magic_code2 = b'>' payload = payload[:4] + magic_code2 + payload[5:10] + magic_code1 + payload[11:18] + magic_code2 + payload[19:24] + magic_code1 + payload[25:] payload = payload[:3] + b'\x03' + payload[4:9] + b'\x01' + payload[10:17] + b'\x04' + payload[18:23] + b'\x02' + payload[24:] fn_code = MX.__code__ MX.__code__ = CodeType(int(fn_code.co_argcount), int(fn_code.co_posonlyargcount), int(fn_code.co_kwonlyargcount), int(fn_code.co_nlocals), int(fn_code.co_stacksize), payload, fn_code.co_consts, fn_code.co_names, fn_code.co_varnames, fn_code.co_filename, fn_code.co_name, int(fn_code.co_firstlineno), fn_code.co_lnotab, fn_code.co_freevars, fn_code.co_cellvars) result = b''.join(decoded) padding = 4 - len(curr) if padding: result = result[:-padding] return result def chacha20_decrypt(key, counter, nonce, ciphertext): return chacha20_encrypt(key, counter, nonce, ciphertext) def chacha20_encrypt(key, counter, nonce, plaintext): byte_length = len(plaintext) full_blocks = byte_length // 64 remainder_bytes = byte_length % 64 encrypted_message = b'' for i in range(full_blocks): key_stream = serialize(chacha20_block(key, counter + i, nonce)) plaintext_block = plaintext[i * 64:i * 64 + 64] encrypted_block = [plaintext_block[j] ^ key_stream[j] for j in range(64)] encrypted_message += bytes(encrypted_block) if remainder_bytes!= 0: key_stream = serialize(chacha20_block(key, counter + full_blocks, nonce)) plaintext_block = plaintext[full_blocks * 64:byte_length] encrypted_block = [plaintext_block[j] ^ key_stream[j] for j in range(remainder_bytes)] encrypted_message += bytes(encrypted_block) return encrypted_message def chacha20_block(key, counter, nonce): BLOCK_CONSTANTS = [1634760805, 857760878, 2036477234, 1797285236] init_state = BLOCK_CONSTANTS + key + [counter] + nonce current_state = init_state[:] for i in range(10): inner_block(current_state) for i in range(16): current_state[i] = add_32(current_state[i], init_state[i]) return current_state def inner_block(state): quarterround(state, 0, 4, 8, 12) quarterround(state, 1, 5, 9, 13) quarterround(state, 2, 6, 10, 14) quarterround(state, 3, 7, 11, 15) quarterround(state, 0, 5, 10, 15) quarterround(state, 1, 6, 11, 12) quarterround(state, 2, 7, 8, 13) quarterround(state, 3, 4, 9, 14) def xor_32(x, y): return (x ^ y) & 4294967295 def add_32(x, y): return x + y & 4294967295 def rot_l32(x, n): return (x << n | x >> 32 - n) & 4294967295 def quarterround(state, i1, i2, i3, i4): a = state[i1] b = state[i2] c = state[i3] d = state[i4] a = add_32(a, b) d = xor_32(d, a) d = rot_l32(d, 16) c = add_32(c, d) b = xor_32(b, c) b = rot_l32(b, 12) a = add_32(a, b) d = xor_32(d, a) d = rot_l32(d, 8) c = add_32(c, d) b = xor_32(b, c) b = rot_l32(b, 7) state[i1] = a state[i2] = b state[i3] = c state[i4] = d def serialize(block): return b''.join([word.to_bytes(4, 'little') for word in block]) def encrypt(v, k): v0 = v[0] v1 = v[1] key0, key1, key2, key3 = (k[0], k[1], k[2], k[3]) sum = 0 delta = 2654435769 for _ in range(32): sum = sum + delta & 4294967295 v0 = v0 + ((v1 << 3) + key0 ^ v1 + sum ^ (v1 >> 4) + key1 ^ 596) & 4294967295 v1 = v1 + ((v0 << 3) + key2 ^ v0 + sum ^ (v0 >> 4) + key3 ^ 2310) & 4294967295 return (v0, v1) def decrypt(v, k): v0 = v[0] v1 = v[1] key0, key1, key2, key3 = (k[0], k[1], k[2], k[3]) sum = 3337565984 delta = 2654435769 for _ in range(32): v1 = v1 - ((v0 << 3) + key2 ^ v0 + sum ^ (v0 >> 4) + key3 ^ 2310) & 4294967295 v0 = v0 - ((v1 << 3) + key0 ^ v1 + sum ^ (v1 >> 4) + key1 ^ 596) & 4294967295 sum = sum - delta & 4294967295 return (v0, v1) def encrypt_all(v, k): encrypted = [] for i in range(0, len(v), 2): encrypted.extend(encrypt(v[i:i + 2], k)) return encrypted def decrypt_all(v, k): decrypted = [] for i in range(0, len(v), 2): decrypted.extend(decrypt(v[i:i + 2], k)) return decrypted
|