openmls/credentials/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
//! # Credentials
//!
//! A [`Credential`] contains identifying information about the client that
//! created it. [`Credential`]s represent clients in MLS groups and are
//! used to authenticate their messages. Each
//! [`KeyPackage`](crate::key_packages::KeyPackage) as well as each client (leaf node)
//! in the group (tree) contains a [`Credential`] and is authenticated.
//! The [`Credential`] must the be checked by an authentication server and the
//! application, which is out of scope of MLS.
//!
//! Clients can create a [`Credential`].
//!
//! The MLS protocol spec allows the [`Credential`] that represents a client in a group to
//! change over time. Concretely, members can issue an Update proposal or a Full
//! Commit to update their [`LeafNode`](crate::treesync::LeafNode), as
//! well as the [`Credential`] in it. The Update has to be authenticated by the
//! signature public key corresponding to the old [`Credential`].
//!
//! When receiving a credential update from another member, applications must
//! query the Authentication Service to ensure that the new credential is valid.
//!
//! There are multiple [`CredentialType`]s, although OpenMLS currently only
//! supports the [`BasicCredential`].
use std::io::{Read, Write};
use serde::{Deserialize, Serialize};
use tls_codec::{
Deserialize as TlsDeserializeTrait, DeserializeBytes, Error, Serialize as TlsSerializeTrait,
Size, TlsDeserialize, TlsDeserializeBytes, TlsSerialize, TlsSize, VLBytes,
};
#[cfg(test)]
mod tests;
use crate::{ciphersuite::SignaturePublicKey, group::Member, treesync::LeafNode};
use errors::*;
// Public
pub mod errors;
/// CredentialType.
///
/// This enum contains variants for the different Credential Types.
///
/// ```c
/// // See IANA registry for registered values
/// uint16 CredentialType;
/// ```
///
/// **IANA Considerations**
///
/// | Value | Name | R | Ref |
/// |:-----------------|:-------------------------|:--|:---------|
/// | 0x0000 | RESERVED | - | RFC XXXX |
/// | 0x0001 | basic | Y | RFC XXXX |
/// | 0x0002 | x509 | Y | RFC XXXX |
/// | 0x0A0A | GREASE | Y | RFC XXXX |
/// | 0x1A1A | GREASE | Y | RFC XXXX |
/// | 0x2A2A | GREASE | Y | RFC XXXX |
/// | 0x3A3A | GREASE | Y | RFC XXXX |
/// | 0x4A4A | GREASE | Y | RFC XXXX |
/// | 0x5A5A | GREASE | Y | RFC XXXX |
/// | 0x6A6A | GREASE | Y | RFC XXXX |
/// | 0x7A7A | GREASE | Y | RFC XXXX |
/// | 0x8A8A | GREASE | Y | RFC XXXX |
/// | 0x9A9A | GREASE | Y | RFC XXXX |
/// | 0xAAAA | GREASE | Y | RFC XXXX |
/// | 0xBABA | GREASE | Y | RFC XXXX |
/// | 0xCACA | GREASE | Y | RFC XXXX |
/// | 0xDADA | GREASE | Y | RFC XXXX |
/// | 0xEAEA | GREASE | Y | RFC XXXX |
/// | 0xF000 - 0xFFFF | Reserved for Private Use | - | RFC XXXX |
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
#[repr(u16)]
pub enum CredentialType {
/// A [`BasicCredential`]
Basic = 1,
/// An X.509 [`Certificate`]
X509 = 2,
/// Another type of credential that is not in the MLS protocol spec.
Other(u16),
}
impl Size for CredentialType {
fn tls_serialized_len(&self) -> usize {
2
}
}
impl TlsDeserializeTrait for CredentialType {
fn tls_deserialize<R: Read>(bytes: &mut R) -> Result<Self, Error>
where
Self: Sized,
{
let mut extension_type = [0u8; 2];
bytes.read_exact(&mut extension_type)?;
Ok(CredentialType::from(u16::from_be_bytes(extension_type)))
}
}
impl TlsSerializeTrait for CredentialType {
fn tls_serialize<W: Write>(&self, writer: &mut W) -> Result<usize, Error> {
writer.write_all(&u16::from(*self).to_be_bytes())?;
Ok(2)
}
}
impl DeserializeBytes for CredentialType {
fn tls_deserialize_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>
where
Self: Sized,
{
let mut bytes_ref = bytes;
let credential_type = CredentialType::tls_deserialize(&mut bytes_ref)?;
let remainder = &bytes[credential_type.tls_serialized_len()..];
Ok((credential_type, remainder))
}
}
impl From<u16> for CredentialType {
fn from(value: u16) -> Self {
match value {
1 => CredentialType::Basic,
2 => CredentialType::X509,
other => CredentialType::Other(other),
}
}
}
impl From<CredentialType> for u16 {
fn from(value: CredentialType) -> Self {
match value {
CredentialType::Basic => 1,
CredentialType::X509 => 2,
CredentialType::Other(other) => other,
}
}
}
/// X.509 Certificate.
///
/// This struct contains an X.509 certificate chain. Note that X.509
/// certificates are not yet supported by OpenMLS.
///
/// ```c
/// struct {
/// opaque cert_data<V>;
/// } Certificate;
/// ```
#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
pub struct Certificate {
cert_data: Vec<u8>,
}
/// Credential.
///
/// OpenMLS does not look into credentials and only passes them along.
/// As such they are opaque to the code in OpenMLS and only the basic necessary
/// checks and operations are done.
///
/// OpenMLS provides an implementation of the [`BasicCredential`].
///
/// This struct contains MLS credential data, where the data depends on the
/// type.
///
/// **Note:** While the credential is opaque to OpenMLS, the library must know how
/// to deserialize it. The implementation only works with credentials
/// that are encoded as variable-sized vectors.
/// Other credentials will cause OpenMLS either to crash or exhibit
/// unexpected behaviour.
///
/// ```c
/// struct {
/// CredentialType credential_type;
/// select (Credential.credential_type) {
/// case basic:
/// opaque identity<V>;
///
/// case x509:
/// Certificate chain<V>;
/// };
/// } Credential;
/// ```
#[derive(
Debug,
PartialEq,
Eq,
Clone,
Serialize,
Deserialize,
TlsSize,
TlsSerialize,
TlsDeserialize,
TlsDeserializeBytes,
)]
pub struct Credential {
credential_type: CredentialType,
serialized_credential_content: VLBytes,
}
impl Credential {
/// Returns the credential type.
pub fn credential_type(&self) -> CredentialType {
self.credential_type
}
/// Creates and returns a new [`Credential`] of the given
/// [`CredentialType`].
pub fn new(credential_type: CredentialType, serialized_credential: Vec<u8>) -> Self {
Self {
credential_type,
serialized_credential_content: serialized_credential.into(),
}
}
/// Get this serialized credential content.
///
/// This is the content of the `select` statement. It is a TLS serialized
/// vector.
pub fn serialized_content(&self) -> &[u8] {
self.serialized_credential_content.as_slice()
}
/// Get the credential, deserialized.
pub fn deserialized<T: tls_codec::Size + tls_codec::Deserialize>(
&self,
) -> Result<T, tls_codec::Error> {
T::tls_deserialize_exact(&self.serialized_credential_content)
}
}
/// Basic Credential.
///
/// A `BasicCredential` as defined in the MLS protocol spec. It exposes only an
/// `identity` to represent the client.
///
/// Note that this credential does not contain any key material or any other
/// information.
///
/// OpenMLS provides an implementation of signature keys for convenience in the
/// `openmls_basic_credential` crate.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct BasicCredential {
identity: VLBytes,
}
impl BasicCredential {
/// Create a new basic credential.
///
/// Errors
///
/// Returns a [`BasicCredentialError`] if the length of the identity is too
/// large to be encoded as a variable-length vector.
pub fn new(identity: Vec<u8>) -> Self {
Self {
identity: identity.into(),
}
}
/// Get the identity of this basic credential as byte slice.
pub fn identity(&self) -> &[u8] {
self.identity.as_slice()
}
}
impl From<BasicCredential> for Credential {
fn from(credential: BasicCredential) -> Self {
Credential {
credential_type: CredentialType::Basic,
serialized_credential_content: credential.identity,
}
}
}
impl TryFrom<Credential> for BasicCredential {
type Error = BasicCredentialError;
fn try_from(credential: Credential) -> Result<Self, Self::Error> {
match credential.credential_type {
CredentialType::Basic => Ok(BasicCredential::new(
credential.serialized_credential_content.into(),
)),
_ => Err(errors::BasicCredentialError::WrongCredentialType),
}
}
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
/// A wrapper around a credential with a corresponding public key.
pub struct CredentialWithKey {
/// The [`Credential`].
pub credential: Credential,
/// The corresponding public key as [`SignaturePublicKey`].
pub signature_key: SignaturePublicKey,
}
impl From<&LeafNode> for CredentialWithKey {
fn from(leaf_node: &LeafNode) -> Self {
Self {
credential: leaf_node.credential().clone(),
signature_key: leaf_node.signature_key().clone(),
}
}
}
impl From<&Member> for CredentialWithKey {
fn from(member: &Member) -> Self {
Self {
credential: member.credential.clone(),
signature_key: member.signature_key.clone().into(),
}
}
}
#[cfg(test)]
impl CredentialWithKey {
pub fn from_parts(credential: Credential, key: &[u8]) -> Self {
Self {
credential,
signature_key: key.into(),
}
}
}
#[cfg(any(test, feature = "test-utils"))]
pub mod test_utils {
use openmls_basic_credential::SignatureKeyPair;
use openmls_traits::{types::SignatureScheme, OpenMlsProvider};
use super::{BasicCredential, CredentialWithKey};
/// Convenience function that generates a new credential and a key pair for
/// it (using the basic credential crate).
/// The signature keys are stored in the key store.
///
/// Returns the [`Credential`] and the [`SignatureKeyPair`].
///
/// [`Credential`]: super::Credential
pub fn new_credential(
provider: &impl OpenMlsProvider,
identity: &[u8],
signature_scheme: SignatureScheme,
) -> (CredentialWithKey, SignatureKeyPair) {
let credential = BasicCredential::new(identity.into());
let signature_keys = SignatureKeyPair::new(signature_scheme).unwrap();
signature_keys.store(provider.storage()).unwrap();
(
CredentialWithKey {
credential: credential.into(),
signature_key: signature_keys.public().into(),
},
signature_keys,
)
}
}
#[cfg(test)]
mod unit_tests {
use tls_codec::{
DeserializeBytes, Serialize, TlsDeserialize, TlsDeserializeBytes, TlsSerialize, TlsSize,
};
use super::{BasicCredential, Credential, CredentialType};
#[test]
fn basic_credential_identity_and_codec() {
const IDENTITY: &str = "identity";
// Test the identity getter.
let basic_credential = BasicCredential::new(IDENTITY.into());
assert_eq!(basic_credential.identity(), IDENTITY.as_bytes());
// Test the encoding and decoding.
let credential = Credential::from(basic_credential.clone());
let serialized = credential.tls_serialize_detached().unwrap();
let deserialized = Credential::tls_deserialize_exact_bytes(&serialized).unwrap();
assert_eq!(credential.credential_type(), deserialized.credential_type());
assert_eq!(
credential.serialized_content(),
deserialized.serialized_content()
);
let deserialized_basic_credential = BasicCredential::try_from(deserialized).unwrap();
assert_eq!(
deserialized_basic_credential.identity(),
IDENTITY.as_bytes()
);
assert_eq!(basic_credential, deserialized_basic_credential);
}
/// Test the [`Credential`] with a custom credential.
#[test]
fn custom_credential() {
#[derive(
Debug, Clone, PartialEq, Eq, TlsSize, TlsSerialize, TlsDeserialize, TlsDeserializeBytes,
)]
struct CustomCredential {
custom_field1: u32,
custom_field2: Vec<u8>,
custom_field3: Option<u8>,
}
let custom_credential = CustomCredential {
custom_field1: 42,
custom_field2: vec![1, 2, 3],
custom_field3: Some(2),
};
let credential = Credential::new(
CredentialType::Other(1234),
custom_credential.tls_serialize_detached().unwrap(),
);
let serialized = credential.tls_serialize_detached().unwrap();
let deserialized = Credential::tls_deserialize_exact_bytes(&serialized).unwrap();
assert_eq!(credential, deserialized);
let deserialized_custom_credential =
CustomCredential::tls_deserialize_exact_bytes(deserialized.serialized_content())
.unwrap();
assert_eq!(custom_credential, deserialized_custom_credential);
}
}