¿Qué es el formato de archivo BDOB?
Un archivo .bdob es un Objeto de Datos de Vinculación Binaria de la OTAN. Vincula metadatos, con mayor frecuencia una etiqueta de confidencialidad, a un objeto de datos para que la sensibilidad del objeto pueda ser rastreada a medida que se mueve entre socios que comparten información. El formato proviene de la Oficina de Estandarización de la OTAN y se define en la Publicación de Datos Aliados ADatP-4778, el Mecanismo de Vinculación de Metadatos detrás de STANAG 4778. IANA lo registra bajo el tipo de medio application/vnd.nato.bindingdataobject+cbor.
Un archivo .bdob almacena la vinculación en .cbor, la Representación Concisa de Objetos Binarios descrita en RFC 8949. Eso lo convierte en el hermano binario del archivo .bdo basado en XML, que transporta el mismo modelo de vinculación como texto. El archivo contiene los metadatos y una referencia al objeto de datos que describe en lugar de la carga útil en sí, por lo que se mantiene pequeño. Una vinculación también puede incluir un elemento COSE para que pueda ser firmado digitalmente para autenticación e integridad.
Se encontrará con archivos .bdob principalmente en sistemas de defensa y gubernamentales que siguen el enfoque de Seguridad Centrada en los Datos (Data Centric Security), donde cada pieza de datos compartidos viaja con una etiqueta legible por máquina.
Seguridad y protección
RIESGO: 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.
Detalles del formato
en pocas palabras- 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.
Programas que abren archivos 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. Detalles técnicos
especificación profunda| 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 |
| Lanzado | 2020 |
| Última versión | ADatP-4778 (Metadata Binding Mechanism) |
| Estándar abierto | Sí · libre de regalías |
| Especificación | www.iana.org |
Conversiones de BDOB
Preguntas y respuestas de la comunidad
preguntado por usuariosAún no hay preguntas; sea el primero en preguntar sobre los archivos BDOB.
Preguntas frecuentes
¿Qué es un archivo BDOB?
.bdo.¿Cómo abro un archivo BDOB?
.cbor y ejecute un decodificador como cbor2.tool de Python, o pegue sus bytes hexadecimales en el visor web cbor.me para ver la estructura como texto legible.¿Es un archivo BDOB lo mismo que un archivo CBOR?
.bdob es un flujo CBOR, pero la extensión indica que su contenido sigue el perfil de vinculación ADatP-4778 de la OTAN. Cualquier decodificador CBOR puede leer los bytes brutos, pero solo el software compatible con ADatP-4778 interpreta los campos de vinculación correctamente.¿Cuál es la diferencia entre .bdo y .bdob?
.bdo lo almacena como texto XML, mientras que un .bdob lo almacena como binario compacto CBOR. La forma binaria es más pequeña y rápida de analizar, pero no es legible por humanos sin un decodificador.