Che cos'è il formato di file BDOB?
Un file .bdob è un NATO Binary Binding Data Object. Associa metadati, più spesso un'etichetta di riservatezza, a un oggetto dati in modo che la sensibilità dell'oggetto possa essere tracciata mentre si sposta tra i partner di condivisione delle informazioni. Il formato proviene dal NATO Standardization Office ed è definito nella Allied Data Publication ADatP-4778, il Metadata Binding Mechanism alla base dello STANAG 4778. IANA lo registra sotto il tipo di media application/vnd.nato.bindingdataobject+cbor.
Un file .bdob memorizza l'associazione in .cbor, la Concise Binary Object Representation descritta in RFC 8949. Ciò lo rende il fratello binario del file .bdo basato su XML, che trasporta lo stesso modello di associazione come testo. Il file contiene i metadati e un riferimento all'oggetto dati che descrive, piuttosto che il payload stesso, quindi rimane di piccole dimensioni. Un'associazione può anche includere un elemento COSE in modo da poter essere firmata digitalmente per l'autenticazione e l'integrità.
Incontrerete i file .bdob principalmente nei sistemi di difesa e governativi che seguono l'approccio Data Centric Security, dove ogni pezzo di dati condivisi viaggia con un'etichetta leggibile dalla macchina.
Sicurezza e incolumità
RISCHIO: LOWA .bdob file is passive data. The IANA registration states it carries no active or executable content, so opening one cannot run code. The main caution is that it may hold a confidentiality label indicating sensitive or classified material, and any COSE signature should be validated before trusting the binding. Referenced data objects live outside the file and must be resolved separately.
Dettagli del formato
in sintesi- Generic renamed CBOR data - Some non-NATO applications reuse a .bdob extension informally for arbitrary CBOR-serialized data objects, but that is not a registered format.
Programmi che aprono file BDOB
pip install cbor2, then decode a renamed copy with python -m cbor2.tool file.cbor to print the binding as JSON-like text. .bdob in this multi-format viewer to inspect its bytes when you only need a quick look. pip install cbor2 then python -m cbor2.tool yourfile to decode the binding to text. pip install cbor2 and decode with python -m cbor2.tool file to see the JSON representation. cbor-diag gem, then pipe the file through cbor2pretty or cbor2diag to render its diagnostic notation. .bdob to JSON with a CBOR decoder, then explore the binding and label fields using jq. .bdob files programmatically. Dettagli tecnici
specifiche approfondite| Encoding | Concise Binary Object Representation (CBOR), per IETF RFC 8949 |
| Byte order | Big-endian (CBOR head/length fields are network byte order) |
| Container | CBOR data item, optionally wrapped in a COSE (RFC 8152 / RFC 9052) structure for signing |
| Compression | None (CBOR is a compact binary encoding, not a compressed container) |
| Encryption | Not encrypted by default; the binding may carry a COSE-tagged element for authentication and integrity, and referenced data objects can be protected separately |
| Integrity | Optional COSE_Sign / COSE_Mac elements provide digital signatures and integrity protection over the binding |
| Structure | A binding data object associates one or more metadata items (chiefly a STANAG 4774 confidentiality label) with a referenced data object. The CBOR profile encodes the same binding model as the XML .bdo profile, holding the metadata, a reference to the bound data object, and optional signature material. |
| Platforms | Cross-platform |
| Notes | BDOB is the binary sibling of the XML-based .bdo file. Both are profiles of the NATO ADatP-4778 Metadata Binding Mechanism, used within Data Centric Security (DCS) to bind confidentiality metadata to data throughout its lifecycle across information-sharing partners. |
| Typical size | Small, from a few hundred bytes to a few kilobytes, since it holds metadata and references rather than the payload data itself |
| Rilasciato | 2020 |
| Ultima versione | ADatP-4778 (Metadata Binding Mechanism) |
| Standard aperto | Sì · royalty-free |
| Specifica | www.iana.org |
Conversioni BDOB
Domande e risposte della community
chiesto dagli utentiAncora nessuna domanda - sii il primo a chiedere informazioni sui file BDOB.
Domande frequenti
Cos'è un file BDOB?
.bdo.Come apro un file BDOB?
.cbor ed eseguite un decodificatore come cbor2.tool di Python, oppure incollate i suoi byte esadecimali nel visualizzatore web cbor.me per vedere la struttura come testo leggibile.Un file BDOB è uguale a un file CBOR?
.bdob è un flusso CBOR, ma l'estensione segnala che i suoi contenuti seguono il profilo di associazione NATO ADatP-4778. Qualsiasi decodificatore CBOR può leggere i byte grezzi, ma solo il software compatibile con ADatP-4778 interpreta correttamente i campi di associazione.Qual è la differenza tra .bdo e .bdob?
.bdo lo memorizza come testo XML, mentre un .bdob lo memorizza come binario compatto CBOR. La forma binaria è più piccola e veloce da analizzare ma non è leggibile dall'uomo senza un decodificatore.