Network Working Group J. Schaad
Internet-Draft August Cellars
Intended status: Informational February 04, 2015
Expires: August 8, 2015

CBOR Encoded Message Syntax
draft-schaad-cose-00

Abstract

Concise Binary Object Representation (CBOR) is data format designed for small code size and small message size. There is a need for the ability to have the basic security services defined for this data format. This document specifies how to do signatures, message authentication codes and encryption using this data format. The work in this document is derived in part from the JSON web security documents using the same parameters and algorithm identifiers as they do.

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at http://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."

This Internet-Draft will expire on August 8, 2015.

Copyright Notice

Copyright (c) 2015 IETF Trust and the persons identified as the document authors. All rights reserved.

This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.


Table of Contents

1. Introduction

The JOSE working group produced a set of documents that defined how to perform encryption, signatures and message authentication (MAC) operations for JavaScript Object Notation (JSON) documents and then to encode the results using the JSON format [RFC7159]. This document does the same work for use with the Concise Binary Object Representation (CBOR) [RFC7049] document format. While there is a strong attempt to keep the flavor of the original JOSE documents, two considerations are taking into account:

1.1. Design changes from JOSE

1.2. Requirements Terminology

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in [RFC2119].

When the words appear in lower case, their natural language meaning is used.

1.3. CBOR Grammar

There currently is no standard CBOR grammar available for use by specifications. In this document, we use a modified version of the CBOR data definition language (CDDL) defined in [I-D.greevenbosch-appsawg-cbor-cddl]. The differences between the defined grammar and the one we used are mostly self explanatory. The biggest difference being the addition of the choice operator ‘|’. Additionally, note the use of the null value which is used to occupy a location in an array but to mark that the element is not present.

2. The COSE_MSG structure

The COSE_MSG structure is a top level CBOR object which corresponds to the DataContent type in [RFC5652]. This structure allows for a top level message to be sent which could be any of the different security services, where the security service is identified. The presence of this structure does not preclude a protocol to use one of the individual structures as a stand alone component.

*COSE_MSG {
  msg_type : uint;
  msg_content : COSE_Sign | COSE_encrypt | COSE_mac;
}

This structure is encoded as an array by CBOR. Descriptions of the fields:

msg_type
indicates which of the security structures is in this block.
msg_content
contains the top level fields for the security service provided. The type in this field is based on the value of the field msg_type.

3. Signing Structure

The signature structure allows for one or more signatures to be applied to a message payload. There are provisions for attributes about the content and attributes about the signature to be carried along with the signature itself. These attributes may be authenticated by the signature, or just present. Examples of attributes about the content would be the type of content, when the content was created, and who created the content. Examples of attributes about the signature would be the algorithm and key used to create the signature, when the signature was created, and counter-signatures.

When more than one signature is present, the successful validation of one signature associated with a given signer is usually treated as a successful signature by that signer. However, there are some application environments where other rules are needed. An application that employs a rule other than one valid signature for each signer must specify those rules. Also, where simple matching of the signer identifier is not sufficient to determine whether the signatures were generated by the same signer, the application specification must describe how to determine which signatures were generated by the same signer. Support of different communities of recipients is the primary reason that signers choose to include more than one signature. For example, the COSE_Sign structure might include signatures generated with the RSA signature algorithm and with the Elliptic Curve Digital Signature Algorithm (ECDSA) signature algorithm. This allows recipients to verify the signature associated with one algorithm or the other. (Source of text is [RFC5652].) More detailed information on multiple signature evaluation can be found in [RFC5752].

The CDDL grammar structure for a signature message is:

COSE_Sign : {
    protected : bstr | null;
    unprotected : map(tstr, .) | null;
    payload : bstr | null;
    signatures: COSE_signature_a* | COSE_signature;
}

The fields is the structure have the following semantics:

protected
contains attributes about the payload which are to be protected by the signature. An example of such an attribute would be the content type (‘cty’) attribute. The content is a CBOR map of attributes which is encoded to a byte stream. This field MUST NOT contain attributes about the signature, even if those attributes are common across multiple signatures.
unprotected
contains attributes about the payload which are not protected by the signature. An example of such an attribute would be the content type (‘cty’) attribute. This field MUST NOT contain attributes about a signature, even if the attributes are common across multiple signatures.
payload
contains the serialized content to be signed.
If the payload is not present in the message, the application is required to supply the payload separately.
The payload is wrapped in a bstr to ensure that it is transported without changes, if the payload is transported separately it is the responsibility of the application to ensure that it will be transported without changes.
signatures
is either a single signature or an array of signature values.
A single signature value can be represented using either data type. Implementations MUST be able to parse both data types.

The CDDL grammar structure for a signature is:

COSE_signature :  {
    protected : bstr | null;
    unprotected : map(tstr, .) | null;
    signature : bstr;
}
*COSE_signature_a : COSE_signature;

The fields is the structure have the following semantics:

protected
contains additional information to be authenticated by the signature. The field holds data about the signature operation. The field MUST NOT hold attributes about the payload being signed. The content is a CBOR map of attributes which is encoded to a byte stream. At least one of protected and unprotected MUST be present.
unprotected
contains attributes about the signature which are not protected by the signature. This field MUST NOT contain attributes about the payload being signed. At least one of protected and unprotected MUST be present.
signature
contains the computed signature value.

The COSE structure used to create the byte stream to be signed uses the following CDDL grammar structure:

*Sig_structure : {
    body_protected : bstr | null;
    sign_protected : bstr | null;
    payload : bstr;
}

How to compute a signature:

  1. Create a Sig_structure object and populate it with the appropriate fields.
  2. Create the value to be hashed by encoding the Sig_structure to a byte string.
  3. Comput the hash value from the byte string.
  4. Sign the hash
  5. Place the signature value into the appropriate signature field.

4. Encryption object

In this section we describe the structure and methods to be used when doing an encryption in COSE. In COSE, we use the same techniques and structures for encrypting both the plain text and the keys used to protect the text. This is different from the approach used by both [RFC5652] and [I-D.ietf-jose-json-web-encryption] where different structures are used for the plain text and for the different key management techniques.

One of the byproducts of using the same technique for encrypting and encoding both the content and the keys using the various key management techniques, is a requirement that all of the key management techniques use an Authenticated Encryption (AE) algorithm. (For the purpose of this document we use a slightly loose definition of AE algorithms.) When encrypting the plain text, it is normal to use an Authenticated Encryption with Additional Data (AEAD) algorithm. For key management, either AE or AEAD algorithms can be used. See Appendix A for more details about the different types of algorithms.

The CDDL grammar structure for encryption is:

COSE_encrypt {
  protected : bstr | null;   # Contains map(tstr, .)
  unprotected : map(tstr, .) | null;
  iv : bstr | null;
  aad : bstr | null;
  ciphertext : bstr | null;
  recipients : COSE_encrypt_a* | COSE_encrypt | null;
}

* COSE_encrypt_a : COSE_encrypt

Description of the fields:

protected
contains the information about the plain text or encryption process that is to be integrity protected. The field is encoded in CBOR as a ‘bstr’ if present and the value ‘null’ if there is no data. The contents of the protected field is a CBOR map of the protected data names and values. The map is CBOR encoded before placing it into the bstr. Only values associated with the current cipher text are to be placed in this location even if the value would apply to multiple recipient structures.
unprotected
contains information about the plain text that is not integrity protected. If there are no field, then the value ‘null’ is used. Only values associated with the current cipher text are to be placed in this location even if the value would apply to multiple recipient structures.
iv
contains the initialization vector (IV), or it’s equivalent, if one is needed by the encryption algorithm. If there is no IV, then the value ‘null’ is used.
aad
contains additional authenticated data (aad) supplied by the application. This field contains information about the plain text data that is authenticated, but not encrypted. If the application does not provide this data, the value ‘null’ is used.
cipherText
contains the encrypted plain text. If the cipherText is to be transported independently of the control information about the encryption process (i.e. detached content) then the value ‘null’ is encoded here.
recipients
contains the recipient information. The field can have one of three data types:

4.1. Key Management Methods

There are a number of different key management methods that can be used in the COSE encryption system. In this section we will discuss each of the key management methods and what fields need to be specified to deal with each of them.

The names of the key management methods used here are the same as are defined in [I-D.ietf-jose-json-web-key]. Other specifications use different terms for the key management methods or do not support some of the key management methods.

At the moment we do not have any key management methods that allow for the use of protected headers. This may be changed in the future if, for example, the AES-GCM Key wrap method defined in [I-D.ietf-jose-json-web-algorithms] were extended to allow for authenticated data. In that event the use of the ‘protected’ field, which is current forbidden below, would be permitted.

4.1.1. Direct Encryption

In direct encryption mode, a shared secret between the sender and the recipient is used as the CEK. For direct encryption mode, no recipient structure is built. All of the information about the key is placed in either the protected or unprotected fields at the content level. When direct encryption mode is used, it MUST be the only mode used on the message. It is a massive security leak to have both direct encryption and a different key management mode on the same message.

For JOSE, direct encryption key management is the only key management method allowed for doing MAC-ed messages. In COSE, all of the key management methods can be used for MAC-ed messages.

The COSE_encrypt structure for the recipient is organized as follows:

4.1.2. Key Wrapping

In key wrapping mode, the CEK is randomly generated and that key is then encrypted by a shared secret between the sender and the recipient. All of the currently defined key wrapping algorithms for JOSE (and thus for COSE) are AE algorithms. Key wrapping mode is considered to be superior to direct encryption if the system has any capability for doing random key generation. This is because the shared key is used to wrap random data rather than data has some degree of organization and may in fact be repeating the same content.

The COSE_encrypt structure for the recipient is organized as follows:

4.1.3. Key Encryption

Key Encryption mode is also called key transport mode in some standards. Key Encryption mode differs from Key Wrap mode in that it uses an asymmetric encryption algorithm rather than a symmetric encryption algorithm to protect the key. The only current Key Encryption mode algorithm supported is RSAES-OAEP.

The COSE_encrypt structure for the recipient is organized as follows:

4.1.4. Direct Key Agreement

Direct Key Agreement derives the CEK from the shared secret computed by the key agreement operation. For Direct Key Agreement, no recipient structure is built. All of the information about the key and key agreement process is placed in either the ‘protected’ or ‘unprotected’ fields at the content level.

When direct key agreement mode is used, it SHOULD be the only mode used on the message. This method creates the CEK directly and that makes it difficult to mix with additional recipients.

The COSE_encrypt structure for the recipient is organized as follows:

4.1.5. Key Agreement with Key Wrapping

Key Agreement with Key Wrapping uses a randomly generated CEK. The CEK is then encrypted using a Key Wrapping algorithm and a key derived from the shared secret computed by the key agreement algorithm.

The COSE_encrypt structure for the recipient is organized as follows:

4.2. Encryption Algorithm for AEAD algorithms

The encryption algorithm for AEAD algorithms is fairly simple.
In order to get a consistent encoding of the data to be authenticated, the Enc_structure is used to have canonical form of the AAD.

*Enc_structure : {
   protected : bstr | null;
   aad : bstr | null;
}

  1. If there is protected data, CBOR encode the map to a byte string and place in the protected field of the Enc_structure and the COSE_Encrypt structure.
  2. Copy the ‘aad’ field from the COSE_Encrypt structure to the Enc_Structure.
  3. Encode the Enc_structure using a CBOR Canonical encoding Section 7 to get the AAD value.
  4. Encrypt the plain text and place it in the ‘ciphertext’ field. The AAD value is passed in as part of the encryption process.
  5. For recipient of the message, recursively perform the encryption algorithm for that recipient using the encryption key as the plain text.

4.3. Encryption algorithm for AE algorithms

  1. Verify that the ‘protected’ field is empty.
  2. Verify that the ‘aad’ field is empty.
  3. Encrypt the plain text and place in the ‘ciphertext’ field.

5. MAC objects

In this section we describe the structure and methods to be used when doing MAC authentication in COSE. JOSE used a variant of the signature structure for doing MAC operations and it is restricted to using a single pre-shared secret to do the authentication. This document allows for the use of all of the same methods of key management as are allowed for encryption.

When using MAC operations, there are two modes in which it can be used. The first is just a check that the content has not been changed since the MAC was computed. Any of the key management methods can be used for this purpose. The second mode is to both check that the content has not been changed since the MAC was computed, and to use key management to verify who sent it. The key management modes that support this are ones that either use a pre-shared secret, or do static-static key agreement. In both of these cases the entity MAC-ing the message can be validated by a key binding. (The binding of identity assumes that there are only two parties involved and you did not send the message yourself.)

COSE_mac :  {
   protected : bstr | null;
   unprotected" : map(tstr, .) | null;
   payload : bstr;
   tag : bstr;
   recipients : COSE_encrypt_a* | COSE_encrypt | null;
}

Field descriptions:

protected
contains attributes about the payload which are to be protected by the MAC. An example of such an attribute would be the content type (‘cty’) attribute. The content is a CBOR map of attributes which is encoded to a byte stream. This field MUST NOT contain attributes about the recipient, even if those attributes are common across multiple recipients. At least one of protected and unprotected MUST be present.
unprotected
contains attributes about the payload which are not protected by the MAC. An example of such an attribute would be the content type (‘cty’) attribute. This field MUST NOT contain attributes about a recipient, even if the attributes are common across multiple recipients. At least one of protected and unprotected MUST be present.
payload
contains the serialized content to be MAC-ed.
If the payload is not present in the message, the application is required to supply the payload separately.
The payload is wrapped in a bstr to ensure that it is transported without changes, if the payload is transported separately it is the responsibility of the application to ensure that it will be transported without changes.
tag
contains the MAC value.
recipients
contains the recipient information. See the description under COSE_Encryption for more info.
*MAC_structure : {
   protected : bstr | null;
   payload : bstr;
}

How to compute a MAC:

  1. Create a MAC_structure and copy the protected and payload elements from the COSE_mac structure.
  2. Encode the MAC_structure using a canonical CBOR encoder. The resulting bytes is the value to compute the MAC on.
  3. Compute the MAC and place the result in the ‘tag’ field of the COSE_mac structure.
  4. Encrypt and encode the MAC key for each recipient of the message.

6. Key Structure

There are only a few changes between JOSE and COSE for how keys are formatted. As with JOSE, COSE uses a map to contain the elements of a key. Those values, which in JOSE, are base64url encoded because they are binary values, are encoded as bstr values in COSE.

For COSE we use the same set of fields that were defined in [I-D.ietf-jose-json-web-key].

COSE_Key : map {
    "kty" : tstr;
    "use" : tstr;
    "key_ops" : tstr*;
    "alg" : tstr;
    "kid" : tstr;
}

*COSE_KeySet : COSE_Key*;

The element “kty” is a required element in a COSE_Key map.
All other elements are optional and not all of the elements listed in [I-D.ietf-jose-json-web-key] or [I-D.ietf-jose-json-web-algorithms] have been listed here even though they can all appear in a COSE_Key map.

The “key_ops” element is prefered over the “use” element as the information provided that way is more finely detailed about the operations allowed. It is strongly suggested that this element be present for all keys.

The same fields defined in [I-D.ietf-jose-json-web-key] are used here with the following changes in rules:

7. CBOR Encoder Restrictions

There as been an attempt to resrict the number of places where the document needs to impose restrictions on how the CBOR Encoder needs to work. We have managed to narrow it down to the following restrictions:

8. IANA Considerations

There are IANA considerations to be filled in.

9. Security Considerations

There are security considerations:

  1. Protect private keys
  2. MAC messages with more than one recipient means one cannot figure out who sent the message
  3. Use of direct key with other recipient structures hands the key to other recipients.
  4. Use of direcct ECDH direct encryption is easy for people to leak information on if there are other recipients in the message.
  5. Considerations about protected vs unprotected header fields.

10. References

10.1. Normative References

[I-D.greevenbosch-appsawg-cbor-cddl] Greevenbosch, B., Sun, R. and C. Vigano, "CBOR data definition language: a notational convention to express CBOR data structures.", Internet-Draft draft-greevenbosch-appsawg-cbor-cddl-04, December 2014.
[I-D.ietf-jose-json-web-algorithms] Jones, M., "JSON Web Algorithms (JWA)", Internet-Draft draft-ietf-jose-json-web-algorithms-40, January 2015.
[RFC7049] Bormann, C. and P. Hoffman, "Concise Binary Object Representation (CBOR)", RFC 7049, October 2013.

10.2. Informative References

[AES-GCM] Dworkin, M., "NIST Special Publication 800-38D: Recommendation for Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC.", February 2015.
[I-D.ietf-jose-json-web-encryption] Jones, M. and J. Hildebrand, "JSON Web Encryption (JWE)", Internet-Draft draft-ietf-jose-json-web-encryption-40, January 2015.
[I-D.ietf-jose-json-web-key] Jones, M., "JSON Web Key (JWK)", Internet-Draft draft-ietf-jose-json-web-key-41, January 2015.
[I-D.ietf-jose-json-web-signature] Jones, M., Bradley, J. and N. Sakimura, "JSON Web Signature (JWS)", Internet-Draft draft-ietf-jose-json-web-signature-41, January 2015.
[I-D.mcgrew-aead-aes-cbc-hmac-sha2] McGrew, D., Foley, J. and K. Paterson, "Authenticated Encryption with AES-CBC and HMAC-SHA", Internet-Draft draft-mcgrew-aead-aes-cbc-hmac-sha2-05, July 2014.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC3394] Schaad, J. and R. Housley, "Advanced Encryption Standard (AES) Key Wrap Algorithm", RFC 3394, September 2002.
[RFC3447] Jonsson, J. and B. Kaliski, "Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1", RFC 3447, February 2003.
[RFC3610] Whiting, D., Housley, R. and N. Ferguson, "Counter with CBC-MAC (CCM)", RFC 3610, September 2003.
[RFC5652] Housley, R., "Cryptographic Message Syntax (CMS)", STD 70, RFC 5652, September 2009.
[RFC5752] Turner, S. and J. Schaad, "Multiple Signatures in Cryptographic Message Syntax (CMS)", RFC 5752, January 2010.
[RFC5990] Randall, J., Kaliski, B., Brainard, J. and S. Turner, "Use of the RSA-KEM Key Transport Algorithm in the Cryptographic Message Syntax (CMS)", RFC 5990, September 2010.
[RFC7159] Bray, T., "The JavaScript Object Notation (JSON) Data Interchange Format", RFC 7159, March 2014.

Appendix A. AEAD and AE algorithms

The set of encryption algorithms that can be used with this specification is restricted to authenticated encryption (AE) and authenticated encryption with additional data (AEAD) algorithms. This means that there is a strong check that the data decrypted by the recipient is the same as what was encrypted by the sender. Encryption modes such as counter have no check on this at all. The CBC encryption mode had a weak check that the data is correct, given a random key and random data, the CBC padding check will pass one out of 256 times. There have been several times that a normal encryption mode has been combined with an integrity check to provide a content encryption mode that does provide the necessary authentication. AES-GCM [AES-GCM], AES-CCM [RFC3610], AES-CBC-HMAC [I-D.mcgrew-aead-aes-cbc-hmac-sha2] are examples of these composite modes.

PKCS v1.5 RSA key transport does not qualify as an AE algorithm. There are only three bytes in the encoding that can be checked as having decrypted correctly, the rest of the content can only be probabilistically checked as having decrypted correctly. For this reason, PKCS v1.5 RSA key transport MUST NOT be used with this specification. RSA-OAEP was designed to have the necessary checks that that content correctly decrypted and does qualify as an AE algorithm.

When dealing with authenticated encryption algorithms, there is always some type of value that needs to be checked to see if the authentication level has passed. This authentication value may be:

Appendix B. Three Levels of Recipient Information

All of the currently defined Key Management methods only use two levels of the COSE_Encrypt structure. The first level is the message content and the second level is the content key encryption. However, if one uses a key management technique such as RSA-KEM (see Appendix A of RSA-KEM [RFC5990], then it make sense to have three levels of the COSE_Encrypt structure.

These levels would be:

Appendix C. Examples

C.1. Direct MAC

This example has some features that are in questions but not yet incorporated in the document.

To make it easier to read, this uses CBOR’s diagnostic notation rather than a binary dump.

Encoded in CBOR - 118 bytes, content is 14 bytes long

[
  2,
  null,
  {
    "alg": "HS256"
  },
  h'436f6e74656e7420537472696e67',
  h'78956d858ee6c026ac630063627a4ce98d3003bc68e7c1e53b5b468331b69f93',
  null,
  {
    "alg": "dir",
    "kid": "018c0ae5-4d9b-471b-bfd6-eef314bc7037"
  },
  null,
  null,
  null
]

C.2. Wrapped MAC

This example has some features that are in questions but not yet incorporated in the document.

To make it easier to read, this uses CBOR’s diagnostic notation rather than a binary dump.

Encoded in CBOR - 162 bytes, content is 14 bytes long

[
  2,
  null,
  {
    "alg": "HS256"
  },
  h'436f6e74656e7420537472696e67',
  h'2ee486376b8b2a61fe526589ceb456e20919a68ebc0458431ef3e13ffe7b
    f698',
  null,
  {
    "alg": "A128KW",
    "kid": "77c7e2b8-6e13-45cf-8672-617b5b45243a"
  },
  null,
  h'4f6e9e6a3e43b79561ef602a2a9e629a437e8df90a7ff361acbdb1076c95
    5d0f25c660a67aee1bdf',
  null
]

C.3. Direct ECDH

This example has some features that are in questions but not yet incorporated in the document.

To make it easier to read, this uses CBOR’s diagnostic notation rather than a binary dump.

Encoded in CBOR - 216 bytes, content is 14 bytes long

[
  1,
  null,
  {"alg": "A128GCM"},
  h'656d6a73ccf1b35fb99044e1',
  h'd7b27b67a81b212ee513b148454fe2d571d51bb679239769f5d2299bb96b',
  null,
  {
    "alg": "ECDH-ES",
    "epk": {
      "kty": "EC",
      "crv": "P-256",
      "x": h'00b81ff1de0eeba27613027526d83b5f4cbffaca433488e3805
             e7a75c43bd1b966',
      "y": h'00d142a334ac8790dc821abe9362434daeb00c1b8b076843e51
             a4a4717b30c54ce'},
      "kid": "meriadoc.brandybuck@buckland.example"
    }
  },
  null,
  null,
  null
]

C.4. Single Signature

This example has some features that are in questions but not yet cooperated in the document.

To make it easier to read, this uses CBOR’s diagnostic notation rather than a binary dump.

[
  0,
  null,
  null,
  h'436f6e74656e7420537472696e67',
  null,
  {
    "kid": "bilbo.baggins@hobbiton.example",
    "alg": "PS256"
  },
   h'5afe80ec9f208b4719a3bd688c803a3154b1ff25af86e054173ad6ddf71
     ba77a4a2b793beed077a4e1a8a69ac1277c457f636691cb4a7d3dc67b47
     ec84c067076b720236bae498bdb21deebbc0a0f525f9a24b336d51e2b3e
     ffd67df3e051405a3599aed83b8a8e94e4194dded2f661e5e6894825779
     b79b463bd4f477f33356cf8aecfa8a543344d2620145be8a72a712f9854
     57040140176164c77cdae7cc480ae4357683cce79b97ddb10f390862a24
     2aae1aa391cc730b1631f020874a8a6efc77b08f027323e2c4ae85eeb3e
     5dc715e0e2fa8aec63fb828d7a2c45e361e249117bd8b41e1e12388412d
     8ce3809c9a2172afda5ca7c5839896825da66a50'
]

C.5. Multiple Signers

This example has some features that are in questions but not yet cooperated in the document.

To make it easier to read, this uses CBOR’s diagnostic notation rather than a binary dump.

Encoded in CBOR - 491 bytes, content is 14 bytes long

[
  0,
  null,
  null,
  h'436f6e74656e7420537472696e67',
  [
    [
      null,
      {
        "kid": "bilbo.baggins@hobbiton.example",
        "alg": "PS256"
      },
       h'5afe80ec9f208b4719a3bd688c803a3154b1ff25af86e054173ad6d
         df71ba77a4a2b793beed077a4e1a8a69ac1277c457f636691cb4a7d
         3dc67b47ec84c067076b720236bae498bdb21deebbc0a0f525f9a24
         b336d51e2b3effd67df3e051405a3599aed83b8a8e94e4194dded2f
         661e5e6894825779b79b463bd4f477f33356cf8aecfa8a543344d26
         20145be8a72a712f985457040140176164c77cdae7cc480ae435768
         3cce79b97ddb10f390862a242aae1aa391cc730b1631f020874a8a6
         efc77b08f027323e2c4ae85eeb3e5dc715e0e2fa8aec63fb828d7a2
         c45e361e249117bd8b41e1e12388412d8ce3809c9a2172afda5ca7c
         5839896825da66a50'
    ],
    [
      null,
      {
        "kid": "bilbo.baggins@hobbiton.example",
        "alg": "ES512"
      },
      h'00e9769c05afb2d93baf5a0c2cace1747b5091f50596831911c67ebf
        76f4220adb53698fe7831000d526887893d67de05ead1bbe378ce9e9
        731bda4cd37f53dcf8d40186c46d872795b566682c113cc9d5bf5a8c
        5321fd50a003237115decf0cb8b09e5c3cb50bc2203af45bebd51e6c
        4d0ec51170d5b9ac1b21a2017a50d7c15b6de8f9'
    ]
  ]
]

Appendix D. Processing Parameter Table

This table contains a list of all of the parameters for use in signature and encryption message types defined by the JOSE document set. In the table is the data value type to be used for CBOR as well as the integer value that can be used as a replacement for the name in order to further decrease the size of the sent item.

name number CBOR type comments
alg * tstr presence is required
apu * bstr
apv * bstr
crit * tstr*
cty * tstr
enc * use alg instead
epk * map contains a COSE key not a JWK key
iv * use field in array instead
jku * tstr
jwk * map contains a COSE key not a JWK key
kid * tstr
p2c * int
p2s * bstr
tag * tag is included in the cipher text
typ * use cty for the content type, no concept of a different wrapper type
x5c * bstr*
x5t * bstr
x5t#S256 * bstr
x5u * tstr
zip * tstr only used at content level

Appendix E. Key Parameter Tables

This table contains a list of all of the parameters defined for keys that were defined by the JOSE document set. In the table is the data value type to be used for CBOR as well as the integer value that can be used as a replacement for the name in order to further decrease the size of the sent item.

name number CBOR type
kty * tstr
use * tstr
key_ops * tstr*
alg * tstr
kid * tstr
x5u * tstr
x5c * bstr*
x5t * bstr
xt5#S256 * bstr

This table contains a list of all of the parameters that were defined by the JOSE document set for a specific key type. In the table is the data value type to be used for CBOR as well as the integer value that can be used as a replacement for the name in order to further decrease the size of the sent item. Parameters dealing with keys

key type name number CBOR type
EC d * bstr
EC x * bstr
EC y * bstr
RSA e * bstr
RSA n * bstr
RSA d * bstr
RSA p * bstr
RSA q * bstr
RSA dp * bstr
RSA dq * bstr
RSA qi * bstr
RSA oth * bstr
RSA r * bstr
RSA t * bstr
oct k * bstr

Author's Address

Jim Schaad August Cellars EMail: ietf@augustcellars.com