diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-02-14 20:14:09 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-02-14 22:16:07 +0000 |
| commit | faddfd5cce5d447ca50a0a97ded3e6f3c86c355e (patch) | |
| tree | a3b13dc2d2108630ffbbd69806c074068685f586 | |
| parent | 697a8c5a86b013ff4dd78b6c3b79b09522bd9e46 (diff) | |
Fix indentation.
| -rw-r--r-- | src/encrypted_kdm.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/encrypted_kdm.cc b/src/encrypted_kdm.cc index ebcb41ca..f932f35a 100644 --- a/src/encrypted_kdm.cc +++ b/src/encrypted_kdm.cc @@ -610,18 +610,18 @@ EncryptedKDM::EncryptedKDM ( } else if (formulation == MULTIPLE_MODIFIED_TRANSITIONAL_1 || formulation == DCI_SPECIFIC) { if (trusted_devices.empty ()) { /* Fall back on the "assume trust" thumbprint so we - can generate "modified-transitional-1" KDMs - together with "multiple-modified-transitional-1" - KDMs in one go, and similarly for "dci-any" etc. + can generate "modified-transitional-1" KDMs + together with "multiple-modified-transitional-1" + KDMs in one go, and similarly for "dci-any" etc. */ kre.authorized_device_info->certificate_thumbprints.push_back ("2jmj7l5rSw0yVb/vlWAYkK/YBwk="); } else { /* As I read the standard we should use the - recipient /and/ other trusted device thumbprints - here. MJD reports that this doesn't work with - his setup; a working KDM does not include the - recipient's thumbprint (recipient.thumbprint()). - Waimea uses only the trusted devices here, too. + recipient /and/ other trusted device thumbprints + here. MJD reports that this doesn't work with + his setup; a working KDM does not include the + recipient's thumbprint (recipient.thumbprint()). + Waimea uses only the trusted devices here, too. */ BOOST_FOREACH (Certificate const & i, trusted_devices) { kre.authorized_device_info->certificate_thumbprints.push_back (i.thumbprint ()); |
