Applicable Cryptography
- Applicable Free Form Programmable Cryptography.
- Author: Dara O Shayda
- Artwork: Tokyo Ghoul
- Preface
- Digital Signature
- Asymmetic Keys
- Blockchain
- π, π, π, β
- βοΈ
- Example: Bardcodes
- Example: NASA Ocean Color (MODIS)
- Example: Photo ID
- Example Photo Id + multiple images and barcodes
- Example Polymer Simulation
- Channels
Preface
The Free Form Programmable Cryptography is designed for applicable coding, and standalone application units with instant use and benefit for the public.
The Free Form Programmable Cryptography uses ideograms, pictograms and small Spoken phrases, however with semantics of the most powerful, standard and modern commercial cryptography. Moreover, all computational components reside within multiple highly secured cloud systems suitable for scientific computing and hopefully law enforceable applications.Β
I greatly hope that this aspect of the Free Form Programmable Cryptography ends up being most useful and elevating for everyone on this planet, to learn and to protect!
Dara O Shayda
May 18 2026
Chief of Software
Computational Classnotes
Republic of IrelandΒ
An ideogram or ideograph (from Greek idΓ©a 'idea' + grΓ‘phΕ 'to write') is a symbol that is used within a given writing system to represent an idea or concept in a given language.[1] . Some ideograms are more arbitrary than others: some are only meaningful assuming preexisting familiarity with some convention; others more directly resemble their signifieds. Ideograms that represent physical objects by visually illustrating them are called pictograms.[3][4]
Digital Signature
Computational components for signing any objects
hash[ ], β[ ], β@
A hash code is a fixed-size numerical value generated from input data of arbitrary size, used primarily for indexing data in hash tables. It allows for efficient data retrieval and storage by mapping variable-length data to a fixed-length representation.
Think of the hash code as a unique digital signature for any data that once even if one bit of that data altered the entire new hash code would be different.
Example: "dara is good lookin" has the hash code:
"0x05ee501e3232083ca0f16b02011944e735f78db170c568c2ea85e56380ddca05"
Counterexample: "dara is good lookin." the ending red dot cause an entire change to the has code above:
"0x4700eceb9e5cbc887ad3dea1833081d51c3572c7886ea9c8a3f30b0c5ad4c614"
hash1 = β["dara is good lookin"];
hash2 = β@"dara is good lookin";
hash3 = hash["dara is good looking"];
show hash1 also hash2 also hash3;
save as myhash;
Output
hash1βΆ("0x05ee501e3232083ca0f16b02011944e735f78db170c568c2ea85e56380ddca05")
hash2βΆ("0x05ee501e3232083ca0f16b02011944e735f78db170c568c2ea85e56380ddca05")
hash3βΆ("0x4700eceb9e5cbc887ad3dea1833081d51c3572c7886ea9c8a3f30b0c5ad4c614")
Digital Signature
- Your digital signature is the proof that you signed something
- Your digital signature attests to the fact that your data was not tampered with
- In asymmetric key system you ought to sign with the private key π or any symbol representing one
- message: any expression from symbols to numerals to expressions to images to audio and video and so on
- π«: Free Form language symbol for digital signature in binary operator form in this case. keyπ«message computes a signature for the message given this key. Operator form π«should be thought of a multiplication a β¨ b where two left and right operands act on each other to compute a product. In a π«b, the key a acts on the message/data b to output a signature.
Sign
π["rsa"];
message = "hi";
signature = ππ«message;
save as signature1;
Cloud Object Browser: signature1
Verify Signature
- Signature, generally performed in another program in another system and in the past. To access that signature Free Form language follows the path paradigm e.g. "/certs/free/signature1"
- base = "/certs/free/signature1"; states that the symbol base represents the path on the rhs; base can by any other symbol/word
- s = "base/signature/value"; allows the access to the external signature value again in path form and s presents the accessed signature
Paths starting with / are external paths e.g. "/certs/free/signature1" created by other programs and networks , while paths like "base/signature/value" are local to the current Free Form language script.
- key = "base/π"; in paired key cryptography systems, assumption is everyone has access to the public key π. This public key is then used to verify if the computed signature was indeed performed by the secret private key π .
- q = (βπ» s β² message)π«key; this time the rhs the public key acts on the lhs namely (βπ» s β² message) and places returns the evaluation boolean result in q.
- (βπ» s β² message) is a generalization of list in other programming languages. Symbols βπ» and β² "pin" contents into the list and depending the pin symbol the content is interpreted
- β² message pins a message the subject matter of interest in this signature computations
- βπ» s pins the signature from a previous program who allegedly signed the message namely β² message
base = "/certs/free/signature1";
s = "base/signature/value";
key = "base/π";
message = "hi";
q = (βπ» s β² message)π«key;
show q;
save as verify1;
Output:
"q" βΆ True
Cloud Object Browser: verify1
FAIL: Verify Signature
base = "/certs/free/signature1";
s = "base/signature/value";
key = "base/π";
message = "hi!";
q = ( βπ» s β² message ) π«key;
show q;
save as verify1-2;
Output:
"q" βΆ False
Cloud Object Browser: verify1-2
Asymmetic Keys
Two keys one public and one private.
Kerckhoffs's Principle
Kerckhoffs's principle (also called Kerckhoffs's desideratum, assumption, axiom, doctrine or law) of cryptography was stated by the Dutch cryptographer Auguste Kerckhoffs in the 19th century. The principle holds that a cryptosystem should be secure, even if everything about the system, except the key, is public knowledge. This concept is widely embraced by cryptographers, in contrast to security through obscurity, which is not.
Kerckhoffs's principle was phrased by the American mathematician Claude Shannon as "the enemy knows the system",[1] i.e., "one ought to design systems under the assumption that the enemy will immediately gain full familiarity with them". In that form, it is called Shannon's maxim.
Security Through Obscurity Considered Dangerous
Hiding security vulnerabilities in algorithms, software, and/or hardware decreases the likelihood they will be repaired and increases the likelihood that they can and will be exploited. Discouraging or outlawing discussion of weaknesses and vulnerabilities is extremely dangerous and deleterious to the security of computer systems, the network, and its citizens. [2]
Open Discussion Encourages Better Security
The long history of cryptography and cryptoanalysis has shown time and time again that open discussion and analysis of algorithms exposes weaknesses not thought of by the original authors, and thereby leads to better and more secure algorithms. As Kerckhoffs noted about cipher systems in 1883, "Il faut qu'il n'exige pas le secret, et qu'il puisse sans inconvΓ©nient tomber entre les mains de l'ennemi." (Roughly, "the system must not require secrecy and must be able to be stolen by the enemy without causing trouble.") [2]
[1] https://en.wikipedia.org/wiki/Kerckhoffs%27s_principleΒ
[2] https://www.cs.columbia.edu/~smb/papers/draft-ymbk-obscurity-00.txt
π: Public Key, π Private Key
Public-key cryptography, or asymmetric cryptography,
An unpredictable (typically large and random) number is used to begin generation of an acceptable pair of keys suitable for use by an asymmetric key algorithm.
Free Form Programmable Keys
π: Public Key
Β π Private Key
In this example the message is digitally signed with Alice's private key, but the message itself is not encrypted. 1) Alice signs a message with her private key. 2) Using Alice's public key, Bob can verify that Alice sent the message and that the message has not been modified.
[1] https://en.wikipedia.org/wiki/Public-key_cryptographyΒ
π
π is a mighty operator, function and a cloud data source all at once!
In the ff script below you can see on the first line π acts as singleton operator or function and , and on the 3rd line as a cloud data source:
π;
tmp = "π/curve";
show tmp;
save as 2keys;
Output:
"tmp" β "ethereum"
Cloud Object Browser
Encrypt: ππ
- Symbol πbehaves like a binary operator
- π encrypts what is on its rhs e.g. πm
- ππuses the key on its lhs to encrypt
- crypt = ππ m just like e.g. multiplication copies the resultant into the lhs of =
ππ m behaves like a product by the operator πincorporating is rhs and lhs into a product.
π ["rsa"] ;
m = "hi";
crypt = ππ m;
show crypt;
save as rsa;
Output:
"crypted" βΆ "<|Cipher -> RSA, Data -> ByteArray[ETlKQciE9Qxm3/+Cm1y8/RdCwREyqc84Od8IrJYGcjlm4RGXxs4oOXl2xEqbsdo1bcUk2C4HkhxeGWInbVPU1ipokp1P7zg3ffUWERID4/NA1waVzbeeFCq4rs6BjXB2/D/QGFYkNEPxkY9NA8OijjeoTWbfjs+DY+nZft585kzDiK8yPF6ZchkcZeLIAJwLi2xiZzGt4Ko1oOypFSyEYoOKljWnm7Iudr4cC/ec/9ap1psUkdDybcMHsFHIUO3OCU0PGIHS9FKR2nCPVTEZZunTLHzXCrHwWf+OZCoFt2qurFpLzD52s3C30hozalgVz5hgn28c9l9DiGmpuc7T0A==], OriginalForm -> String, Padding -> PKCS1|>"
Cloud Object Browser
Decrypt: π π
π ["rsa"] ;
bob = "hi";
crypt = ππ bob;
alice = crypt π π;
show bob also alice;
save as rsa;
Output:
"bob" βΆ "(\"hi\")"
"alice" βΆ "(\"hi\")"
Blockchain
Compute blockchains containing text, images, audio and videos!
π, π, π, β
A very simple and a very short but a very powerful program:
π;
show (βπ);
show (βπ);
show π also π;
save as 2keys-show-test;
Output
Cloud Object Browser
βοΈ
π;
βοΈ (
π€ "metadata1"->"I am metadata1"
π€ "metadata2"->"I am metadata2"
β² "I am content1"
β² "I am content2"
);
pdfs = "βοΈ/pdf";
show pdfs;
save as certificate0-test;
Output:
Cloud Object Browser
PDF Certificates
Example: Bardcodes
Any image/photo entering the Free Form language computational container is immediately processed for:
- Any faces? if yes, highlight and cutout the facial regions and compute them (their properties).
- Any barcodes or qr-codes? if yes, highlight the barcode regions and read them.
- Any texts? if yes, OCR the image.
- Add the necessary post-processing e.g. image annotations
- Finally collect at the resulting metadata tags π€ and contents β² (to be hashed) and URL export as String
Case 1: Single image multiple barcodes only
//symbol to process barcodes and qrcodes;
ππππππ;
π;
//add name and other information;
βοΈ (
π€ "type"->"image segmentation"
π€ "info"->"qr code detection in photo"
π€ "publisher"->"CDN: compdatanotes.com"
π€ "Β©"->"CC-BY-NC-ND 4.0"
);
show "ππππππ/index";
show "ππππππ/bartexts";
save as qr1;
Output
"ππππππ/index"
"ππππππ/bartexts"
{"065656915641", "065515000037", "9771468413022", "037000377085", "8435039118747"}
Blockchain Certificate
"βοΈ/certificate" (trimmed text)
There are currently 4 default mandatory items inside the hash list or the CRID and you can obtain the barcode related ones
Scanned bars as above
https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_qr_bars.png
JSON containing if any other OCR texts computed from the image
https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_qr_imagetext.json
See the bounding box JSON below addresses as "_boxes"
https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_qr_boxes.json
The String values for the barcodes and the qr codes
https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_qr_barcodebox.json
"ππππππ/β²"
β²"https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/certs_free_qr1_bars.pngβ¨https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/certs_free_qr1_imagetext.jsonβ¨https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/certs_free_qr1_boxes.jsonβ¨https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/certs_free_qr1_barcodebox.jsonβ¨https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/certs_free_qr1_linehighlights.pngβ¨https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/certs_free_qr1_lineboxes.json"
qr-codes or bar-codes bounding box scanning area
Any geometrical information pertinent to full understanding and computational access for a region of an image or a recognized object is computed and place in appropriate JSON structures.
Cloud Object Browser
PDF Certificate
Example: NASA Ocean Color (MODIS)
Ocean Colors?
- The MODIS instrument is operating on both the Terra and Aqua spacecraft. Β It has a viewing swath width of 2,330 km and views the entire surface of the Earth every one to two days. Its detectors measure 36 spectral bands between 0.405 and 14.385 Β΅m, and it acquires data at three spatial resolutions -- 250m, 500m, and 1,000m.
- Along with all the data from other instruments on board the Terra spacecraft and Aqua Spacecraft, MODIS data are transferred to ground stations in White Sands, New Mexico, via the Tracking and Data Relay Satellite System (TDRSS). The data are then sent to the EOS Data and Operations System (EDOS) at the Goddard Space Flight Center. The Level 1A, Level 1B, geolocation and cloud mask products and the Higher-level MODIS land and atmosphere products are produced by the MODIS Adaptive Processing System (MODAPS), and then are parceled out among three DAACs for distribution. Ocean color products are produced by the Ocean Color Data Processing System (OCDPS) and distributed to the science and applications community.
- https://oceandata.sci.gsfc.nasa.gov/
- https://oceandata.sci.gsfc.nasa.gov/gallery/Β
Free Form Script
Data from several fully coded papers:
DOI:10.13140/RG.2.2.29744.21764
DOI:10.13140/RG.2.2.33099.66082
DOI:10.13140/RG.2.2.16322.44482
//Β© 2012-Present CCN Studios Creative Commons Attribution- NonCommercial- ShareAlike 4.0 International Public License;
π;
//add name and other information;
βοΈ (
π€ "type"->"image processing"
π€ "info"->"NASA Ocean Color"
π€ "satellite"->"MODIS"
π€ "publisher"->"CDN: compdatanotes.com"
π€ "Β©"->"CC-BY-NC-ND 4.0"
);
pdfs = "βοΈ/pdf";
show pdfs;
save as ocean-colors-certs;
Output:
"pdfs" βΆ "({"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_1.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_2.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_3.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_4.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_5.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_6.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_7.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_8.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_9.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_10.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_11.pdf", "https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/certs_free_ocean-colors-certs_12.pdf"}) "
Batch Input: Zipped Directory
- Create a directory
- Copy and paste all files for Contents into a blockchain
- Zip the directory
- Input the zip file into Zip File labeled input fieldΒ
Cloud Object Browser
PDF Certificates
Example: Photo ID
πΆ;
π;
//add name and other information;
βοΈ(
π€"first name"->"dara"
π€"last name"->"shayda"
);
show "πΆ/highlight";
save as photo_id;
Example Photo Id + multiple images and barcodes
- USA, the state of Virginia (proposed?) Personal Identity card
- With qrcodes, barcodes and multiple images and text.
- Symbol πΆ does all the facial computing (neural nets), barcodes, qrcodes and image text
- This will empower a universal blockchained or bloxberged Digital object that could and should enable a new de-centralized identification card system.
πΆ;
π;
//πΆ fills in numerous β²content + π€metadata into the blockchain;
βοΈ;
show "πΆ/index";
save as photo_id;
"πΆ/index"
"πΆ/barsindex"
"πΆ/highlight"
"πΆ/text"
{
"image_text":"Vi soe VA, USA FEDERAL *\nLYQIM1A IDENTIFICATION CARD
_#n* a\n716700487 e\nTESSIER 8 Gender: Female, Orientation: Straight,
Age: 35,\nBELLA Fi Race: White\/ Non-Hispanic, Votes: Democrat,\nAd
srw aD *B88\"795-a202 5 Job: Industrial Machinery Repair Worker,
Security\n74 IN RD: 5 5 Γ’Answers: {The Truman Show, Omaha, White},\n
Dato of birt ry Marital status: married, Salutation: Mrs.\nOeio4rt988
A\na ED Height: 5Γ’ 6Γ’\nF BRO Weight: 136 ssn: Q\nNONE\n\ntek
items tebe IMT |"
}
"πΆ/bartexts"
{
"@<LF><FS><CR>ANSI
6360050101DL00300203DLDAQ3265188<LF>DAALOTT,ERIC,B,<LF>DAG763 TEST
STREET<LF>DAINEW YORK CITY<LF>DAJSC<LF>DAK10005 <LF>DARD <LF>DAS
<LF>DAT <LF>DAU601<LF>DAW170<LF>DAYBRO <LF>DAZBRO
<LF>DBA20241004<LF>DBB19911004<LF>DBC1<LF>DBD20140101<LF>DBG2<LF>DBH1
}
Color Keys
Blockchain by Bloxberg 2.0
CCN cloud systems
Image Processing + Bloxberg 2.0 Blockchain Digitals
{
"πΆ/face", "πΆ/face1", "πΆ/highlight", "πΆ/faces", "πΆ/index", "πΆ/text",
"πΆ/facials", "πΆ/boxes", "πΆ/bartexts", "πΆ/barsindex", "πΆ/β²", "πΆ/π€", "πΆ
processed", "(π)", "π/type", "π/curve", "π/compressed", "(π)",
"(βπ)", "βπ/type", "π/type", "(π)", "(βπ)", "βπ/type", "π/type",
"βοΈ/bloxberg/contexts", "βοΈ/bloxberg/context1/@context",
"βοΈ/bloxberg/context1/id", "βοΈ/bloxberg/context1/type",
"βοΈ/bloxberg/context1/issuer", "βοΈ/bloxberg/context1/issuancedate",
"βοΈ/bloxberg/context1/credentialsubject", "βοΈ/bloxberg/context1/crid",
"βοΈ/bloxberg/context1/cridtype", "βοΈ/bloxberg/context1/metadatajson",
"βοΈ/bloxberg/context1/proof", "βοΈ/bloxberg/context2/@context",
"βοΈ/bloxberg/context2/id", "βοΈ/bloxberg/context2/type",
"βοΈ/bloxberg/context2/issuer", "βοΈ/bloxberg/context2/issuancedate",
"βοΈ/bloxberg/context2/credentialsubject", "βοΈ/bloxberg/context2/crid",
"βοΈ/bloxberg/context2/cridtype", "βοΈ/bloxberg/context2/metadatajson",
"βοΈ/bloxberg/context2/proof", "βοΈ/bloxberg/context3/@context",
"βοΈ/bloxberg/context3/id", "βοΈ/bloxberg/context3/type",
"βοΈ/bloxberg/context3/issuer", "βοΈ/bloxberg/context3/issuancedate",
"βοΈ/bloxberg/context3/credentialsubject", "βοΈ/bloxberg/context3/crid",
"βοΈ/bloxberg/context3/cridtype", "βοΈ/bloxberg/context3/metadatajson",
"βοΈ/bloxberg/context3/proof", "βοΈ/bloxberg/context4/@context",
"βοΈ/bloxberg/context4/id", "βοΈ/bloxberg/context4/type",
"βοΈ/bloxberg/context4/issuer", "βοΈ/bloxberg/context4/issuancedate",
"βοΈ/bloxberg/context4/credentialsubject", "βοΈ/bloxberg/context4/crid",
"βοΈ/bloxberg/context4/cridtype", "βοΈ/bloxberg/context4/metadatajson",
"βοΈ/bloxberg/context4/proof", "βοΈ/bloxberg/context5/@context",
"βοΈ/bloxberg/context5/id", "βοΈ/bloxberg/context5/type",
"βοΈ/bloxberg/context5/issuer", "βοΈ/bloxberg/context5/issuancedate",
"βοΈ/bloxberg/context5/credentialsubject", "βοΈ/bloxberg/context5/crid",
"βοΈ/bloxberg/context5/cridtype", "βοΈ/bloxberg/context5/metadatajson",
"βοΈ/bloxberg/context5/proof", "βοΈ/bloxberg/context6/@context",
"βοΈ/bloxberg/context6/id", "βοΈ/bloxberg/context6/type",
"βοΈ/bloxberg/context6/issuer", "βοΈ/bloxberg/context6/issuancedate",
"βοΈ/bloxberg/context6/credentialsubject", "βοΈ/bloxberg/context6/crid",
"βοΈ/bloxberg/context6/cridtype", "βοΈ/bloxberg/context6/metadatajson",
"βοΈ/bloxberg/context6/proof", "βοΈ/bloxberg/context7/@context",
"βοΈ/bloxberg/context7/id", "βοΈ/bloxberg/context7/type",
"βοΈ/bloxberg/context7/issuer", "βοΈ/bloxberg/context7/issuancedate",
"βοΈ/bloxberg/context7/credentialsubject", "βοΈ/bloxberg/context7/crid",
"βοΈ/bloxberg/context7/cridtype", "βοΈ/bloxberg/context7/metadatajson",
"βοΈ/bloxberg/context7/proof", "βοΈ/contents", "βοΈ/hashlist", "βοΈ/key_eth",
"βοΈ/value", "βοΈ/pdf", "βοΈ/fullcredentialobject",
"βοΈ/certificate", "βοΈ/metadata",
}
"πΆ/β²"
"β²\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_id_face.png\"β²\"\ https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_\ id_facehighlight.png\"β²\"\ https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_id_facehighlights.png\"β²\"\ https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_id_index.png\"β²\"\ https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_id_imagetext.json\"β²\"\ https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_id_facialpoints.json\"β²\"\ https://www.wolframcloud.com/obj/ccn2/freeform/ff/images/ff_free_blox_id_barcodebox.json\""
"πΆ/π€"
"π€\"group\"->\"ff\"π€\"user\"->\"free\"π€\"ffname\"->\"blox_\ id\"π€\"publisher\"->\"CCN\"π€\"license\"->\"CC-BY-NC-ND 4.0\""
Full Credential Object
"βοΈ/fullcredentialobject"
"([{\"@context\":[\"https://www.w3.org/2018/credentials/v1\",\"https://w
3id.org/bloxberg/schema/research_object_certificate_
v1\"],\"id\":\"https://bloxberg.org\",\"type\":[\"VerifiableCredential
\",\"BloxbergCredential\"],\"issuer\":\"https://raw.githubusercontent.c
om/bloxberg-org/issuer_json_
l2/master/issuer.json\",\"issuanceDate\":\"2026-06-02T02:59:59.
448151+00:00\",\"credentialSubject\":{\"id\":\"https://sepolia.arbisca
n.io/address/0xAF3aD7B80e90C0Ca651a8e673E193eCC690BADA8\",\"issuingOrg
\":{\"id\":\"https://bloxberg.org\"}},\"crid\":\"9d05f7aa5009599ded40f
f901de8fbce8bedb00004c0e6ad77fd128c7fac6806\",\"cridType\":\"sha2-256\",\"m
etadataJson\":\"{\\\"group\\\":\\\"ff\\\", \\\"user\\\":\\\"free\\\",
\\\"ffname\\\":\\\"blox_id\\\", \\\"publisher\\\":\\\"CCN\\\",
\\\"license\\\":\\\"CC-BY-NC-ND
4.0\\\"}\",\"proof\":{\"type\":\"MerkleProof2019\",\"created\":\"2026-0
6-02T02:59:59.
947487\",\"proofValue\":\"zLBHrm1GqmftAu35gTndQtHSErc2pdrx2dQ69dF9Fqvj
vqCY71iNnFEaW1kSw5rVcT6XXiWJHY7uUQyKhjPsg32KpHfyMR2GZZkEeY7YvcRRQSAjkK
sduAX2KXxWnFFBWFbn27m7m9ritdwzTzbbGFPRNfAqSeGhDKxTqLp4wYgqfAWAuFxDnG3n
hyUDCAP1c9BohuH45o3f64tEnAH3LQmJkzGKKixRqz9TtypnELSJwzeMPTWZNPTihHhL2P
A9N9YvMt3RtbJGaWzRAwebi7Tf2FwujSNmCX7Cygb13 ...
...
@context\":[\"https://www.w3.org/2018/creden
tials/v1\",\"https://w3id.org/bloxberg/schema/research_object_
certificate_
v1\"],\"id\":\"https://bloxberg.org\",\"type\":[\"VerifiableCredential
\",\"BloxbergCredential\"],\"issuer\":\"https://raw.githubusercontent.c
om/bloxberg-org/issuer_json_
l2/master/issuer.json\",\"issuanceDate\":\"2026-06-02T02:59:59.
448151+00:00\",\"credentialSubject\":{\"id\":\"https://sepolia.arbisca
n.io/address/0xAF3aD7B80e90C0Ca651a8e673E193eCC690BADA8\",\"issuingOrg
\":{\"id\":\"https://bloxberg.org\"}},\"crid\":\"5b57331ee65751d0024a3
f47940cdecdeebf27e070c670cdee7e472aaaa274f3\",\"cridType\":\"sha2-256\",\"m
etadataJson\":\"{\\\"group\\\":\\\"ff\\\", \\\"user\\\":\\\"free\\\",
\\\"ffname\\\":\\\"blox_id\\\", \\\"publisher\\\":\\\"CCN\\\",
\\\"license\\\":\\\"CC-BY-NC-ND
4.0\\\"}\",\"proof\":{\"type\":\"MerkleProof2019\",\"created\":\"2026-0
6-02T02:59:59.\
951710\",\"proofValue\":\"zLBHrm1GqUpCCwm ....
...
"βοΈ/pdf"
"({\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/ff_free_blox_id_1.pdf\",
\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/ff_free_blox_id_2.pdf\",
\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxber2/cert_pdf/ff_free_blox_id_3.pdf\",
\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/ff_free_blox_id_4.pdf\",
\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/ff_free_blox_id_5.pdf\",
\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/ff_free_blox_id_6.pdf\",
\"https://www.wolframcloud.com/obj/ccn2/freeform/ff/blockchain/bloxberg2/cert_pdf/ff_free_blox_id_7.pdf\"})"
Certificate 1
Certificate 7
Example Polymer Simulation
//Β© 2012-Present CCN Studios Creative Commons Attribution -
NonCommercial- ShareAlike 4.0 International Public License;
π;
βοΈ (
π€ "platform"->"Nodule Construct 2026.8b1 (Aug 4th)"
π€ "app"->"certs/free/polymer4"
π€ "unity"->"6000.4.9f1"
π€ "license"->"CC-BY-NC-ND 4.0"
);
//transforms C# classes into Cloud Objects for remote Unity runtime compilation;
references' type is reference;
references' list = { 'Polymer2, 'SpinLocal3, 'Platform3,
'MeshSpawner3,'MeshSticker3, 'SpawnPlayer3, 'SimpleWalkable3};
classes' type is class;
classes' list = {'Constructor3};
save as polymer5;
Nodule Construct
Enter into the input box on top left:
certs/free/polymer5 + orb
Blockchain Contents
Cloud Object Browser
PDF Certificates
Channels
Human chat channels
π₯
π["rsa"];
//group chat;
π₯ (
π€"owner"->"free"
);
save as channel1;
π£
π£ (
π€"user"->"dara"
π€"channel"->"/ff/free/channel1"
π€"secret"->"we are free!"
);
save as user1;