Operator | Symbol | Meaning (General) | Meaning in Set Theory | Usage in Cryptography |
---|---|---|---|---|
Membership | Element is in a set |
|
Is a key or vector part of a keyspace | |
Non-Membership | Element is not in a set |
|
Excluded elements, invalid keys | |
Containment (Subset) | Set |
Every member of |
Subspaces, subgroup keys | |
Proper Subset | Strict inclusion |
|
Small keyspaces inside larger ones | |
For All | For every element |
Universal quantifier | Validating all keys or states | |
There Exists | There is at least one |
Existential quantifier | Existence of valid keys, collisions |
[ | |
{ | |
"ENTROPY.HASH": "8475302745873452094357716198745683194", | |
"PROOF.UUID": "808f5a52-dd28-4490-aebd-ee924d769426", | |
"MODULO.SPIN": [1, 7, 4], | |
"ENI6MA.WITNESS": "😛", | |
"META": { | |
"user": "a3b92c4f-f0d3-4857-9c94-4170f8019e68", | |
"custodian": "422b8a51-548b-484a-8d94-d2ca4222d6a5", | |
"asset": "e42a0a49-984b-4baa-9ea7-dd9a69e5c089" |
#!/bin/bash | |
# This script recursively renames files in all child directories. | |
# For any file that begins with a numeric prefix followed by a hyphen, | |
# the script will remove that prefix. For example: | |
# 001-finename.extension.pdf => finename.extension.pdf | |
# Find all files recursively, sort them alphabetically | |
find . -type f | sort | while IFS= read -r file; do | |
dir=$(dirname "$file") | |
base=$(basename "$file") |
#!/bin/bash | |
# This script recursively renames files in all child directories. | |
# For any file that begins with a numeric prefix followed by a hyphen, | |
# the script will remove that prefix. For example: | |
# 001-finename.extension.pdf => finename.extension.pdf | |
# Find all files recursively, sort them alphabetically | |
find . -type f | sort | while IFS= read -r file; do |
Secure AI Communication
The application of this innovative technology for secure artificial intelligence communication is profound and far-reaching. Imagine a scenario where one can interact with an AI system, altering its programming directly through the AI interface, yet the AI remains incapable of compromising or altering its own core programming. This level of security is achieved by replacing traditional zero-knowledge proofs with a novel encryption method that leverages random noise and advanced quantum mechanical principles.
At the heart of this technology is the use of random noise to create a secure encryption channel between humans and machines. By utilizing perfectly random entropy sources, the system generates cryptographic keys and primes that are inherently unpredictable, even to the most advanced super quantum computers. This unpredictability stems from the fundamental limitations of physical space-time, making it computationally infeasible for any entity to crack the encryption through b
A Pen by Dylan Rosario on CodePen.
import SwiftUI | |
import WebKit | |
enum WebViewError: Error { | |
case contentConversion(String) | |
case emptyFileName | |
case inivalidFilePath | |
var message: String { | |
switch self { |
# Example using xxd to read a byte at a specific offset from a binary file
xxd -p -l1 -s 100 file.bin # Read one byte (-l1) at offset 100 (-s) from file.bin
# Using xxd to handle hex offsets and output in decimal format
echo $((16#$(xxd -p -l1 -s $((16#FC)) file.bin))) # Convert the output of xxd from hex to decimal
# Example using dd to dump raw data
dd if=file.bin seek=$((16#FC)) bs=1 count=5 status=none # Dump 5 bytes from file.bin starting at hex offset FC
# | |
# Nginx reverse proxy to Google Search (with images and webcache)) | |
# | |
# Credit: | |
# * Nginx rewrite append a parameter at the end of an URL | |
# https://serverfault.com/a/311660/387898 | |
# * https://github.com/tracycool/Reverse-Proxy-for-Google | |
# * https://github.com/caiguanhao/nginx-bypass-gfw/blob/master/google.conf | |
# | |
# References: |
// | |
// RecordAudio.swift | |
// | |
// This is a Swift class (updated for Swift 5) | |
// that uses the iOS RemoteIO Audio Unit | |
// to record audio input samples, | |
// (should be instantiated as a singleton object.) | |
// | |
// Created by Ronald Nicholson on 10/21/16. | |
// Copyright © 2017,2019 HotPaw Productions. All rights reserved. |