File size: 14,708 Bytes
794e95f | 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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | # -*- coding: utf-8 -*-
# Watermark: ip zymatica.space | astronautshe.com
# Parity Verification Engine
import os
import sys
import json
import random
import subprocess
import hashlib
class PythonRadicalPredictor:
def __init__(self, alpha=1, weight=128):
self.alpha = alpha
self.weight = weight
self.trans_rc = {}
self.trans_rf = {}
self.trans_ra = {}
self.prev_rc = 0
self.prev_rf = 0
self.prev_ra = 0
def observe(self, rc, rf, ra):
key_rc = self.prev_rc
if key_rc not in self.trans_rc:
self.trans_rc[key_rc] = {}
self.trans_rc[key_rc][rc] = self.trans_rc[key_rc].get(rc, 0) + self.weight
key_rf = (rc << 8) | self.prev_rf
if key_rf not in self.trans_rf:
self.trans_rf[key_rf] = {}
self.trans_rf[key_rf][rf] = self.trans_rf[key_rf].get(rf, 0) + self.weight
key_ra = (rc << 16) | (rf << 8) | self.prev_ra
if key_ra not in self.trans_ra:
self.trans_ra[key_ra] = {}
self.trans_ra[key_ra][ra] = self.trans_ra[key_ra].get(ra, 0) + self.weight
self.prev_rc = rc
self.prev_rf = rf
self.prev_ra = ra
def get_cum_freqs_rc(self, prev_rc):
freqs = [self.alpha] * 256
if prev_rc in self.trans_rc:
for sym, count in self.trans_rc[prev_rc].items():
freqs[sym] += count
cum_freqs = [0] * 257
for i in range(256):
cum_freqs[i+1] = cum_freqs[i] + freqs[i]
return cum_freqs
def get_cum_freqs_rf(self, curr_rc, prev_rf):
freqs = [self.alpha] * 256
key = (curr_rc << 8) | prev_rf
if key in self.trans_rf:
for sym, count in self.trans_rf[key].items():
freqs[sym] += count
cum_freqs = [0] * 257
for i in range(256):
cum_freqs[i+1] = cum_freqs[i] + freqs[i]
return cum_freqs
def get_cum_freqs_ra(self, curr_rc, curr_rf, prev_ra):
freqs = [self.alpha] * 256
key = (curr_rc << 16) | (curr_rf << 8) | prev_ra
if key in self.trans_ra:
for sym, count in self.trans_ra[key].items():
freqs[sym] += count
cum_freqs = [0] * 257
for i in range(256):
cum_freqs[i+1] = cum_freqs[i] + freqs[i]
return cum_freqs
class BitWriter:
def __init__(self):
self.buffer = []
self.current_byte = 0
self.bit_count = 0
def write_bit(self, bit):
self.current_byte = (self.current_byte << 1) | (bit & 1)
self.bit_count += 1
if self.bit_count % 8 == 0:
self.buffer.append(self.current_byte)
self.current_byte = 0
def write_bit_helper(self, underflow_bits, bit):
self.write_bit(bit)
for _ in range(underflow_bits[0]):
self.write_bit(1 - bit)
underflow_bits[0] = 0
def flush(self):
if self.bit_count % 8 != 0:
padding_bits = 8 - (self.bit_count % 8)
self.current_byte <<= padding_bits
self.buffer.append(self.current_byte)
self.current_byte = 0
self.bit_count += padding_bits
return bytes(self.buffer)
class BitReader:
def __init__(self, buffer):
self.buffer = buffer
self.bit_index = 0
self.total_bits = len(buffer) * 8
def read_bit(self):
if self.bit_index >= self.total_bits:
return 0
byte_pos = self.bit_index // 8
bit_pos = 7 - (self.bit_index % 8)
bit = (self.buffer[byte_pos] >> bit_pos) & 1
self.bit_index += 1
return bit
def python_encode(concepts, alpha=1, weight=128):
pred = PythonRadicalPredictor(alpha, weight)
w = BitWriter()
low = 0
high = 0xFFFFFFFF
underflow_bits = [0]
trace_info = []
for c_idx, c in enumerate(concepts):
rc = (c['domain'] << 4) | c['subdomain']
rf = (c['operation'] << 4) | c['modality']
ra = (c['depth'] << 4) | c['polarity']
symbols = [rc, rf, ra]
types = ["RC", "RF", "RA"]
prev_rc = pred.prev_rc
prev_rf = pred.prev_rf
prev_ra = pred.prev_ra
for step in range(3):
if step == 0:
cum_freqs = pred.get_cum_freqs_rc(prev_rc)
elif step == 1:
cum_freqs = pred.get_cum_freqs_rf(symbols[0], prev_rf)
else:
cum_freqs = pred.get_cum_freqs_ra(symbols[0], symbols[1], prev_ra)
sym = symbols[step]
total = cum_freqs[256]
cum_low = cum_freqs[sym]
cum_high = cum_freqs[sym + 1]
range_width = high - low + 1
high_before = high
low_before = low
high = (low + (range_width * cum_high) // total - 1) & 0xFFFFFFFF
low = (low + (range_width * cum_low) // total) & 0xFFFFFFFF
bits_written = []
temp_underflow = [underflow_bits[0]]
# Simulate bit writing helper to capture trace outputs
def write_bit_simulate(bit):
bits_written.append(str(bit))
def write_bit_helper_simulate(u_bits, bit):
write_bit_simulate(bit)
for _ in range(u_bits[0]):
write_bit_simulate(1 - bit)
u_bits[0] = 0
while True:
if high_before < 0x80000000:
write_bit_helper_simulate(temp_underflow, 0)
low_before = (low_before << 1) & 0xFFFFFFFF
high_before = ((high_before << 1) | 1) & 0xFFFFFFFF
elif low_before >= 0x80000000:
write_bit_helper_simulate(temp_underflow, 1)
low_before = ((low_before - 0x80000000) << 1) & 0xFFFFFFFF
high_before = (((high_before - 0x80000000) << 1) | 1) & 0xFFFFFFFF
elif low_before >= 0x40000000 and high_before < 0xC0000000:
temp_underflow[0] += 1
low_before = ((low_before - 0x40000000) << 1) & 0xFFFFFFFF
high_before = (((high_before - 0x40000000) << 1) | 1) & 0xFFFFFFFF
else:
break
# Now write the real bits
while True:
if high < 0x80000000:
w.write_bit_helper(underflow_bits, 0)
low = (low << 1) & 0xFFFFFFFF
high = ((high << 1) | 1) & 0xFFFFFFFF
elif low >= 0x80000000:
w.write_bit_helper(underflow_bits, 1)
low = ((low - 0x80000000) << 1) & 0xFFFFFFFF
high = (((high - 0x80000000) << 1) | 1) & 0xFFFFFFFF
elif low >= 0x40000000 and high < 0xC0000000:
underflow_bits[0] += 1
low = ((low - 0x40000000) << 1) & 0xFFFFFFFF
high = (((high - 0x40000000) << 1) | 1) & 0xFFFFFFFF
else:
break
trace_info.append({
"concept_idx": c_idx,
"step": step,
"symbol_type": types[step],
"symbol_value": sym,
"low_before": f"0x{low_before:08x}",
"high_before": f"0x{high_before:08x}",
"cum_low": cum_low,
"cum_high": cum_high,
"total": total,
"bits_written": "".join(bits_written)
})
pred.observe(rc, rf, ra)
underflow_bits[0] += 1
if low < 0x40000000:
w.write_bit_helper(underflow_bits, 0)
else:
w.write_bit_helper(underflow_bits, 1)
return w.flush(), w.bit_count, trace_info
def python_decode(encoded_bytes, num_concepts, alpha=1, weight=128):
pred = PythonRadicalPredictor(alpha, weight)
r = BitReader(encoded_bytes)
value = 0
for _ in range(32):
value = (value << 1) | r.read_bit()
low = 0
high = 0xFFFFFFFF
decoded = []
for _ in range(num_concepts):
prev_rc = pred.prev_rc
prev_rf = pred.prev_rf
prev_ra = pred.prev_ra
symbols = [0, 0, 0]
for step in range(3):
if step == 0:
cum_freqs = pred.get_cum_freqs_rc(prev_rc)
elif step == 1:
cum_freqs = pred.get_cum_freqs_rf(symbols[0], prev_rf)
else:
cum_freqs = pred.get_cum_freqs_ra(symbols[0], symbols[1], prev_ra)
total = cum_freqs[256]
range_width = high - low + 1
scaled_val = ((value - low + 1) * total - 1) // range_width
sym = 0
l = 0
rr = 255
while l <= rr:
mid = (l + rr) // 2
if cum_freqs[mid] <= scaled_val < cum_freqs[mid+1]:
sym = mid
break
elif scaled_val >= cum_freqs[mid+1]:
l = mid + 1
else:
rr = mid - 1
symbols[step] = sym
cum_low = cum_freqs[sym]
cum_high = cum_freqs[sym+1]
high = (low + (range_width * cum_high) // total - 1) & 0xFFFFFFFF
low = (low + (range_width * cum_low) // total) & 0xFFFFFFFF
while True:
if high < 0x80000000:
low = (low << 1) & 0xFFFFFFFF
high = ((high << 1) | 1) & 0xFFFFFFFF
value = ((value << 1) | r.read_bit()) & 0xFFFFFFFF
elif low >= 0x80000000:
low = ((low - 0x80000000) << 1) & 0xFFFFFFFF
high = (((high - 0x80000000) << 1) | 1) & 0xFFFFFFFF
value = (((value - 0x80000000) << 1) | r.read_bit()) & 0xFFFFFFFF
elif low >= 0x40000000 and high < 0xC0000000:
low = ((low - 0x40000000) << 1) & 0xFFFFFFFF
high = (((high - 0x40000000) << 1) | 1) & 0xFFFFFFFF
value = (((value - 0x40000000) << 1) | r.read_bit()) & 0xFFFFFFFF
else:
break
rc, rf, ra = symbols
decoded.append({
'domain': rc >> 4,
'subdomain': rc & 0x0F,
'operation': rf >> 4,
'modality': rf & 0x0F,
'depth': ra >> 4,
'polarity': ra & 0x0F
})
pred.observe(rc, rf, ra)
return decoded
def generate_fuzz_data(count=100):
concepts = []
for _ in range(count):
concepts.append({
'domain': random.randint(0, 15),
'subdomain': random.randint(0, 15),
'operation': random.randint(0, 15),
'modality': random.randint(0, 15),
'depth': random.randint(0, 15),
'polarity': random.randint(0, 15)
})
return concepts
def run_parity_test():
print("=" * 80)
print(" [+] Starting Fuzz Parity Test Engine...")
print("=" * 80)
# 1. Generate 100 random coordinate structures
test_concepts = generate_fuzz_data(100)
print(f" - Generated {len(test_concepts)} random 6D coordinates.")
# Write them to a JSON file for the Node.js / WASM script to read
with open('test_input.json', 'w') as f:
json.dump(test_concepts, f)
# 2. Run Python range encoding
py_bytes, py_bits, trace_data = python_encode(test_concepts)
# Save the trace data to parity_trace.json
with open('parity_trace.json', 'w') as f:
json.dump(trace_data, f, indent=2)
print(" [+] Step-by-step state trace outputted to parity_trace.json")
py_decoded = python_decode(py_bytes, len(test_concepts))
# Check Python self-parity
for idx, (orig, dec) in enumerate(zip(test_concepts, py_decoded)):
if orig != dec:
print(f" [-] ERROR: Python self-parity failed at element {idx}!")
return False
print(" [+] Python self-parity checks passed successfully.")
# Save python compressed payload
with open('payload_py.bin', 'wb') as f:
f.write(py_bytes)
# 3. Compile Zig code to WASM if not already done
print(" - Building Zig WASM target...")
try:
subprocess.run([
"zig", "build-exe", "proof.zig",
"-target", "wasm32-freestanding",
"-O", "ReleaseFast",
"--name", "proof_wasm",
"--export=wasm_encode", "--export=wasm_get_encoded_bits",
"--export=wasm_decode", "--export=run_verification"
], check=True)
print(" [+] Compiled proof_wasm.wasm successfully!")
except Exception as e:
print(f" [-] Failed to compile proof.zig: {e}")
print(" [-] Make sure Zig is installed and available in PATH.")
return False
# 4. Invoke Node.js cross-runtime verification tool
print(" - Running Node.js/WASM encoding task...")
try:
subprocess.run(["node", "run_wasm.js"], check=True)
except Exception as e:
print(f" [-] Node.js/WASM execution execution error: {e}")
return False
# 5. Assert byte parity between Python and WASM
if not os.path.exists('payload_wasm.bin'):
print(" [-] ERROR: Node.js did not produce payload_wasm.bin!")
return False
with open('payload_wasm.bin', 'rb') as f:
wasm_bytes = f.read()
print(f" - Python compressed size: {len(py_bytes)} bytes ({py_bits} bits)")
print(f" - WASM compressed size: {len(wasm_bytes)} bytes")
# Assert exact byte match
if py_bytes != wasm_bytes:
print(" [-] ERROR: Bit-Parity Mismatch between Python and WebAssembly!")
print(f" - Python MD5: {hashlib.md5(py_bytes).hexdigest()}")
print(f" - WASM MD5: {hashlib.md5(wasm_bytes).hexdigest()}")
return False
print(" [+] SUCCESS: Isomorphic Bit-Parity Verified! Python and WASM produced byte-for-byte identical output.")
# 6. Check Decoded Parity from WASM output
with open('test_output_wasm.json', 'r') as f:
wasm_decoded = json.load(f)
for idx, (orig, dec) in enumerate(zip(test_concepts, wasm_decoded)):
if orig != dec:
print(f" [-] ERROR: Decoded value from WASM mismatches original at index {idx}!")
return False
print(" [+] SUCCESS: Reconstructed coordinates from WASM match input identically.")
return True
if __name__ == "__main__":
if len(sys.argv) > 1 and sys.argv[1] == '--fuzz':
run_parity_test()
else:
run_parity_test()
|