| /* |
| * Copyright (c) 2023 Project CHIP Authors |
| * All rights reserved. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include <crypto/RawKeySessionKeystore.h> |
| |
| #include <lib/support/BufferReader.h> |
| |
| namespace chip { |
| namespace Crypto { |
| |
| using HKDF_sha_crypto = HKDF_sha; |
| |
| CHIP_ERROR RawKeySessionKeystore::CreateKey(const Symmetric128BitsKeyByteArray & keyMaterial, Aes128KeyHandle & key) |
| { |
| memcpy(key.AsMutable<Symmetric128BitsKeyByteArray>(), keyMaterial, sizeof(Symmetric128BitsKeyByteArray)); |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR RawKeySessionKeystore::CreateKey(const Symmetric128BitsKeyByteArray & keyMaterial, Hmac128KeyHandle & key) |
| { |
| memcpy(key.AsMutable<Symmetric128BitsKeyByteArray>(), keyMaterial, sizeof(Symmetric128BitsKeyByteArray)); |
| return CHIP_NO_ERROR; |
| } |
| |
| CHIP_ERROR RawKeySessionKeystore::DeriveKey(const P256ECDHDerivedSecret & secret, const ByteSpan & salt, const ByteSpan & info, |
| Aes128KeyHandle & key) |
| { |
| HKDF_sha_crypto hkdf; |
| |
| return hkdf.HKDF_SHA256(secret.ConstBytes(), secret.Length(), salt.data(), salt.size(), info.data(), info.size(), |
| key.AsMutable<Symmetric128BitsKeyByteArray>(), sizeof(Symmetric128BitsKeyByteArray)); |
| } |
| |
| CHIP_ERROR RawKeySessionKeystore::DeriveSessionKeys(const ByteSpan & secret, const ByteSpan & salt, const ByteSpan & info, |
| Aes128KeyHandle & i2rKey, Aes128KeyHandle & r2iKey, |
| AttestationChallenge & attestationChallenge) |
| { |
| HKDF_sha_crypto hkdf; |
| uint8_t keyMaterial[2 * sizeof(Symmetric128BitsKeyByteArray) + AttestationChallenge::Capacity()]; |
| |
| ReturnErrorOnFailure(hkdf.HKDF_SHA256(secret.data(), secret.size(), salt.data(), salt.size(), info.data(), info.size(), |
| keyMaterial, sizeof(keyMaterial))); |
| |
| Encoding::LittleEndian::Reader reader(keyMaterial, sizeof(keyMaterial)); |
| |
| return reader.ReadBytes(i2rKey.AsMutable<Symmetric128BitsKeyByteArray>(), sizeof(Symmetric128BitsKeyByteArray)) |
| .ReadBytes(r2iKey.AsMutable<Symmetric128BitsKeyByteArray>(), sizeof(Symmetric128BitsKeyByteArray)) |
| .ReadBytes(attestationChallenge.Bytes(), AttestationChallenge::Capacity()) |
| .StatusCode(); |
| } |
| |
| void RawKeySessionKeystore::DestroyKey(Symmetric128BitsKeyHandle & key) |
| { |
| ClearSecretData(key.AsMutable<Symmetric128BitsKeyByteArray>()); |
| } |
| |
| } // namespace Crypto |
| } // namespace chip |