cbor 610 B

123456789101112131415161718192021
  1. #------------------------------------------------------------------------------
  2. # $File: cbor,v 1.1 2015/01/28 01:05:21 christos Exp $
  3. # cbor: file(1) magic for CBOR files as defined in RFC 7049
  4. 0 string \xd9\xd9\xf7 Concise Binary Object Representation (CBOR) container
  5. !:mime application/cbor
  6. >3 ubyte <0x20 (positive integer)
  7. >3 ubyte <0x40
  8. >>3 ubyte >0x1f (negative integer)
  9. >3 ubyte <0x60
  10. >>3 ubyte >0x3f (byte string)
  11. >3 ubyte <0x80
  12. >>3 ubyte >0x5f (text string)
  13. >3 ubyte <0xa0
  14. >3 ubyte >0x7f (array)
  15. >3 ubyte <0xc0
  16. >>3 ubyte >0x9f (map)
  17. >3 ubyte <0xe0
  18. >>3 ubyte >0xbf (tagged)
  19. >3 ubyte >0xdf (other)