text
stringlengths
0
9.3M
from __future__ import print_function, division from keras.layers import Input, Dense, Activation from keras.layers.merge import Maximum, Concatenate from keras.models import Model from keras.optimizers import Adam from sklearn.ensemble import RandomForestClassifier from sklearn.neural_network import MLPClassifier fr...
import json, glob, os import numpy as np from sklearn.ensemble import RandomForestClassifier apistats_dir = './apistats' select_number = 128 apis = [] fs = glob.glob(os.path.join(apistats_dir, '*.json')) for f in fs: with open(f, 'r') as jsonfile: data = json.load(jsonfile) capis = data['apistats'...
import glob, os, json reports_dir = 'C:/Users/Kuan/Desktop/malgan_exp*' dirs = glob.glob(reports_dir) for d in dirs: loadpath = os.path.join(d, 'reports', 'report.json') if os.path.exists(loadpath): with open(loadpath, 'r') as f: data = json.load(f) name = data['target']['file']...
import io import sys import os import re import itertools import warnings import weakref, datetime from numpy.lib import format from operator import itemgetter, index as opindex from numpy.compat import ( asbytes, asstr, asunicode, asbytes_nested, bytes, basestring, unicode, is_pathlib_path ) import numpy ...
from __future__ import print_function, division from keras.layers import Input, Dense, Activation from keras.layers.merge import Maximum, Concatenate from keras.models import Model from keras.optimizers import Adam from sklearn.ensemble import RandomForestClassifier from sklearn.model_selection import train_test_spli...
from keras.layers import Input, Dense, Activation from keras.layers.merge import Maximum, Concatenate from keras.models import Model from keras.optimizers import Adam from numpy.lib import format from sklearn.ensemble import RandomForestClassifier from sklearn import linear_model, svm from sklearn.model_selection impor...
# generator : 输入层维数:128(特征维数)+20(噪声维数) 隐层数:256 输出层:128 # subsititude detector: 128 - 256 - 1 from keras.layers import Input, Dense, Activation from keras.layers.merge import Maximum, Concatenate from keras.models import Model from keras.optimizers import Adam from sklearn.ensemble import RandomForestClassifier fr...
from sklearn.ensemble import RandomForestClassifier from sklearn.neural_network import MLPClassifier from sklearn import linear_model, svm, tree from sklearn.model_selection import train_test_split import numpy as np class VOTEClassifier(): def __init__(self): self.RF = RandomForestClassifier(n_estimators=...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
import sys import io import os import struct # RSA RSA_KEY_SIZE = 512 METADATA_SIZE = RSA_KEY_SIZE + 22 # Encrypt modes ENC_MODES = [ "full", "part", "spot" ] def print_encfile_info(filename: str) -> bool: """Get encrypted file info""" with io.open(filename, 'rb') as f: # Read metad...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2022-2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2022-2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
#!/usr/bin/env python3 """A pure Python module for decompressing aPLib compressed data Adapted from the original C source code from http://ibsensoftware.com/files/aPLib-1.1.1.zip Approximately 20 times faster than other Python implementations. Compatible with both Python 2 and 3. """ import struct from binascii import...
V3_RND_SEED = 0x910FDE2951947BBF V2_RND_ADDENDUM = 1 V3_RND_ADDENDUM = 0x14057B7EF767814F RND_MULTIPLIER32 = 0x8088405 RND_MULTIPLIER64 = 0x5851F42D4C957F2D def decrypt32(data, seed): dec_data = b'' n = seed pos = 0 size = len(data) while (size != 0): n = (n * RND_MULTIPLIER32 + 1...
import sys import io import os import errno import struct import base64 import bm_dec CFG_POS = 0x4E00 RSA_KEY_SIZE = 0x100 def mkdirs(dir): try: os.makedirs(dir) except OSError as exception: if (exception.errno != errno.EEXIST): raise def save_data_to_file(file_name, data):...
MAX_BLOCK_SIZE = 0xFA1 DIVIDER = 0x1000F ror32 = lambda val, shift: \ ((val & 0xFFFFFFFF) >> (shift & 0x1F)) | \ ((val << (32 - (shift & 0x1F))) & 0xFFFFFFFF) def get_wide_str_hash(s, n=0): for ch in s: m = ord(ch) if (m >= 0x41) and (m <= 0x5A): m |= 0x20 n = m + ...
import base64 import struct import md4 import bm_hash MACHINE_GUID = '873ba7f3-0986-40d0-97df-a1e48ced854f' def get_victim_id(machine_guid): h = 0xFFFFFFFF for _ in range(3): h = bm_hash.get_wide_str_hash(machine_guid, h) s = h.to_bytes(4, byteorder='little') s += s[::-1] victim_id = ...
import io import os import idautils import idaapi XOR_MASK = 0x1803FFF7 LOAD_LIB_AND_IAT_FUNC_EA = 0x407B9C LOAD_LIB_AND_IAT_FUNC_NAME = 'load_lib_and_IAT' LOAD_LIB_AND_IAT_FUNC_TYPE = \ 'void __stdcall load_lib_and_IAT(void *pIAT, const void *pIT, HANDLE hHeap, \ void *pfnHeapAllo...
""" BlackMatter configuration data parser. GitHub: https://github.com/rivitna/ E-mail: rivitna@gmail.com """ import sys import io import os import errno import struct import base64 import aplib import bm_dec # BlackMatter versions BM_MIN_VER = 0x102 BM_MAX_VER = 0x300 BM_DEF_VER = 0x300 # BlackMatter configuration...
# # The MD4 hash function. It is described in RFC 1320. # # Copyright (c) 2020 Project Nayuki. (MIT License) # https://www.nayuki.io/page/cryptographic-primitives-in-plain-python # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (th...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2022-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2024-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
import sys import io import os.path MARKER1 = b'wxyz0123456789+/' MARKERS2 = [ b'LoopError', b'StreamCipherError' ] MAX_MARKER_SPACE = 32 NUM_PUBKEYS = 2 PUBKEY_SIZE = 32 # # Main # if len(sys.argv) != 2: print('Usage: '+ sys.argv[0] + ' filename') exit(0) file_name = sys.argv[1] with io.open(file_name, ...
import sys import io import os.path MARKER1 = b'wxyz0123456789+/' KEY_START = b'\x30\x82\x02' MAX_MARKER_SPACE = 32 NUM_PUBKEYS = 2 PUBKEY_SIZE = 678 # # Main # if len(sys.argv) != 2: print('Usage: '+ sys.argv[0] + ' filename') exit(0) file_name = sys.argv[1] with io.open(file_name, 'rb') as f: file_...
import sys import io import os from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_v1_5 PRIVKEY1_DER_DATA_LEN = 2949 PRIVKEY2_DER_DATA_LEN = 2951 SENTINEL_SIZE = 20 def decrypt_storage(enc_data, privkey_der_data): """Decrypt keystream storage""" key = RSA.import_key(privkey_der_data) enc...
import sys import io import os from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_v1_5 PUBKEY_DER_DATA_LEN = 678 def encrypt_storage(data, pubkey_der_data): """Encrypt keystream storage""" pubkey = RSA.import_key(pubkey_der_data) xor_key_size = pubkey.size_in_bits() // 8 - 11 # Gene...
import sys import io from Crypto.Cipher import ChaCha20 from Crypto.Cipher import ChaCha20_Poly1305 import x25519 XCHACHA_KEY_LEN = 32 XCHACHA_NONCE_LEN = 24 BASE_POINT = b'\t' + b'\0' * 31 HCHACHA_NONCE = 16 * b'\0' def decrypt_storage(enc_data, privkey2): """Decrypt key table storage""" # Extract XChaCh...
import sys import os import io from Crypto.Cipher import ChaCha20 from Crypto.Cipher import ChaCha20_Poly1305 import x25519 KEY_LEN = 32 XCHACHA_NONCE_LEN = 24 BASE_POINT = b'\t' + b'\0' * 31 HCHACHA_NONCE = 16 * b'\0' def encrypt_storage(data, pubkey2): """Encrypt key table storage""" # Generate Curve255...
""" Hive v6 file decrypting. GitHub: https://github.com/rivitna/ Twitter: @rivitna2 """ import sys import os import io import shutil from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_OAEP from Crypto.Hash import SHA3_512 from Crypto.Cipher import ChaCha20 # Encryption marker / Attacker ID (?) (hardco...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
#!/usr/bin/env python3 """A pure Python module for decompressing aPLib compressed data Adapted from the original C source code from http://ibsensoftware.com/files/aPLib-1.1.1.zip Approximately 20 times faster than other Python implementations. Compatible with both Python 2 and 3. """ import struct from binascii import...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# # The MD4 hash function. It is described in RFC 1320. # # Copyright (c) 2020 Project Nayuki. (MIT License) # https://www.nayuki.io/page/cryptographic-primitives-in-plain-python # # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (th...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2022-2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2022-2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2023-2024 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
# MIT License # # Copyright (c) 2023 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limitatio...
# MIT License # # Copyright (c) 2024-2025 Andrey Zhdanov (rivitna) # https://github.com/rivitna # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, including # without limi...
#! /usr/bin/env python3 # This is a Python port of the Rust reference implementation of BLAKE3: # https://github.com/BLAKE3-team/BLAKE3/blob/master/reference_impl/reference_impl.rs from __future__ import annotations from dataclasses import dataclass OUT_LEN = 32 KEY_LEN = 32 BLOCK_LEN = 64 CHUNK_LEN = 1024 CHUNK_ST...