Internet-Draft | Additional MLS Credentials | July 2023 |
Barnes & Nandakumar | Expires 11 January 2024 | [Page] |
This specification defines two new kinds of credentials for use within the Message Layer Security (MLS) credential framework: UserInfo Verifiable Credentials and multi-credentials. UserInfo Verifiable Credentials allow clients to present credentials that associate OpenID Connect attributes to a signature key pair held by the client. Multi-credentials allow clients to present authenticated attributes from multiple sources, or to present credentials in different formats to support groups with heterogeneous credential support.¶
This note is to be removed before publishing as an RFC.¶
Status information for this document may be found at https://datatracker.ietf.org/doc/draft-barnes-mls-addl-creds/.¶
Discussion of this document takes place on the Messaging Layer Security Working Group mailing list (mailto:mls@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/mls/. Subscribe at https://www.ietf.org/mailman/listinfo/mls/.¶
Source for this draft and an issue tracker can be found at https://github.com/bifurcation/mls-userinfo-vc.¶
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 https://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 11 January 2024.¶
Copyright (c) 2023 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 (https://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 Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
MLS provides end-to-end authenticated key exchange [I-D.ietf-mls-protocol]. Each client participating in an MLS group is authenticated with a credential. The MLS credential structure is extensible: New MLS credential formats can be defined which support new mechanisms for authenticating clients.¶
In this document, we define two new types of credential:¶
UserInfo Verifiable Credentials (VCs) are a mechanism by which an OpenID Provider can bind user attributes to a signature key pair. OpenID Connect is already widely deployed as a mechanism for connecting authentication services to applications, and the OpenID Foundation is in the process of standardizing the extensions required for OpenID Providers to issue UserInfo VCs.¶
Multi-credentials address use cases where there might not be a single credential that captures all of a client's authenticated attributes. For example, an enterprise messaging client may wish to provide attributes both from its messaging service, to prove that its user has a given handle in that service, and from its corporate owner, to prove that its user is an employee of the corporation. Multi-credentials can also be used in migration scenarios, where some clients in a group might wish to rely on a newer type of credential, but other clients haven't yet been upgraded.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 [RFC2119].¶
This specification uses terms from the MLS Protocol specification. In particular, we refer to the MLS Credential object, which represents an association between a client's identity and the signature key pair that the client will use to sign messages in the MLS key exchange protocol.¶
As described in the MLS architecture, MLS requires an Authentication Service (AS) as well as a Delivery Service (DS) [I-D.ietf-mls-architecture]. The full security goals of MLS are only realized if the AS and DS are non-colluding. In other words, applications can deploy MLS to get end-to-end encryption (acting as MLS Delivery Service), but they need to partner with a non-colluding Authentication Service in order to achieve full end-to-end security.¶
OpenID Connect is widely used to integrate identity providers with applications, but its current core protocol doesn't provide the binding to cryptographic keys required for use in MLS. When OpenID Connect is coupled with the "Verifiable Credentials" framework, however, it can be used to provision clients with signed "UserInfo VC" objects that contain the critical elements of a credential to be used in MLS:¶
The required updates to OpenID Connect are specfied in [OpenIDUserInfoVC]. That document defines a profile of the OpenID for Verifiable Credential Issuance protocol for issuing "UserInfo Verifiable Credentials". These credentials bind a signature key pair to the user attributes typically exposed through the OpenID Connect UserInfo endpoint.¶
A "UserInfoVC" credential encapsulates a UserInfo Verifiable Credential object, so that it can be used for authenticating an MLS client. We also describe the validation process that MLS clients use to verify UserInfoVC objects that they receive via MLS.¶
The basic steps showing OIDC Verifiable Credential based MLS credential flow are shown in Figure 1.¶
Client 1 is an MLS client that acts as a Holder in the VC model. Client 2 is also an MLS client, but acts in the Verifier role in the VC model. Both clients implement certain OpenID Connect operations to obtain and verify UserInfo VC objects.¶
UserInfoVC
MLS Credential object with the
signed UserInfo VC JWT. Client 1 embeds the UserInfoVC
in an MLS
KeyPackage object and signs the KeyPackage object with the corresponding
private key.¶
If all checks pass, Client 2 has a high degree of assurance of the identity of Client 1. At this point Client 1's KeyPackage (including the VerifiableCredential) will be included in the MLS group's ratchet tree and distributed to the other members of the group. The other members of the group can verify the VerifiableCredential in the same way as Client 2.¶
A new credential type UserInfoVC
is defined as shown below. This credential
type is indicated with the CredentialType value userinfo_vc
(see Section 7).¶
struct { opaque jwt<0..2^32-1>; } UserInfoVC;¶
The jwt
field contains the signed JWT-formatted UserInfo VC object
(as defined in [OpenIDUserInfoVC]), encoded using UTF-8.
The payload of object MUST provide iss
and vc
claims. The iss
claim is
used to look up the OpenID Provider's metadata. The vc
claim contains
authenticated user attributes and a public key binding. Specifically, the field
vc.credentialSubject.id
contains a did:jwk
URI describing the subject's
public key as a JWK.¶
An MLS client validates a UserInfoVC credential in the context of an MLS LeafNode with the following steps:¶
jwt
field parses successfully into a JWT [!@RFC7519], whose
payload parses into UserInfo object as defined in Section 5.3.2 of [!@OpenID].¶
iss
claim is present in the UserInfo VC payload and that "iss"
value represents and issuer that is trusted according to the client's local
policy.¶
Verify the JWT signature:¶
Verify the key binding:¶
vc
claim is present in the UserInfo VC payload.¶
credentialSubject
field, as defined in Section 4 of openid-userinfo-vc.¶
id
field exists and it MUST be a a Decentralized Identifier with
DID method jwk (W3c.did-core).¶
jwk
field parses as a JWK.¶
signature_key
in the LeafNode matches the key in the id
field.¶
If all of the above checks pass, the client can use the signature key in the JWK
for verifying MLS signatures using the signature scheme corresponding to the
kty
and crv
parameters in the JWK. The identity attributes in the JWT
should be associated with the MLS client that presented the credential.¶
Below table maps JWK key types (kty
) and elliptic curves (crv
) to the
equivalent MLS signature scheme.¶
kty | crv | TLS/MLS signature scheme |
---|---|---|
EC
|
P-256
|
ECDSA with P-256 and SHA-256 |
EC
|
P-384
|
ECDSA with P-384 and SHA-384 |
EC
|
P-521
|
ECDSA with P-521 and SHA-512 |
EC
|
Ed25519
|
Ed25519 |
EC
|
Ed448
|
Ed448 |
New credential types MultiCredential
and WeakMultiCredential
are defined as
shown below. These credential types are indicated with CredentialType values
multi
and weak-multi
(see Section 7).¶
struct { CipherSuite cipher_suite; Credential credential; SignaturePublicKey credential_key; /* SignWithLabel(., "CredentialBindingTBS", CredentialBindingTBS) */ opaque signature<V>; } CredentialBinding struct { CredentialBinding bindings<V>; } MultiCredential; struct { CredentialBinding bindings<V>; } WeakMultiCredential;¶
The two types of credentials are processed in exactly the same way. The only difference is in how they are treated when evaluating support by other clients, as discussed below.¶
A multi-credential consists of a collection of "credential bindings". Each
credential binding is a signed statement by the holder of the credential that
the signature key in the LeafNode belongs to the holder of that credential.
Specifically, the signature is computed using the MLS SignWithLabel
function,
with label "CredentialBindingTBS"
and with a content that covers the contents
of the CredentialBinding, plus the signature_key
field from the LeafNode in
which this credential will be embedded.¶
struct { CipherSuite cipher_suite; Credential credential; SignaturePublicKey credential_key; SignaturePublicKey signature_key; } CredentialBindingTBS;¶
The cipher_suite
for a credential is NOT REQUIRED to match the cipher suite
for the MLS group in which it is used, but MUST meet the support requirements
with regard to support by group members discussed below.¶
A credential binding is supported by a client if the client supports the credential type and cipher suite of the binding. A credential binding is valid in the context of a given LeafNode if both of the following are true:¶
credential
is valid according to the MLS Authentication Service.¶
credential_key
corresponds to the specified credential
, in the same
way that the signature_key
would have to correspond to the credential if
the credential were presented in a LeafNode.¶
signature
field is valid with respect to the signature_key
value in
the leaf node.¶
A client that receives a credential of type multi
in a LeafNode MUST verify
that all of the following are true:¶
multi
.¶
For each credential binding in the multi-credential:¶
A client that receives a credential of type weak-multi
in a LeafNode MUST verify
that all of the following are true:¶
The validation procedures for UserInfoVC credentials verify that a JWT came from a given issuer. It doesn't verify that the issuer is authorative for the claimed attributes. The client needs to verify that the issuer is trusted to assert the claimed attributes.¶
UserInfo can contain sensitive info such as human names, phone numbers, and using these credentials in MLS will expose this information to other group members, and potentially others if used in a prepublished KeyPackage.¶
IANA is requested to register add the following new entries to the MLS Credential Type registry.¶
Value | Name | Recommended | Reference |
---|---|---|---|
0x0003 | userinfo-vc | Y | RFC XXXX |
0x0004 | multi | Y | RFC XXXX |
0x0005 | weak-multi | Y | RFC XXXX |