-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add utilities for converting CATValues to/from NSSet. (#28453)
* Add utilities for converting CATValues to/from NSSet. * Address review comments. * Address more review comments.
- Loading branch information
1 parent
228e4ad
commit 1093383
Showing
6 changed files
with
81 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/** | ||
* Copyright (c) 2023 Project CHIP Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
#import "MTRConversion.h" | ||
#import "MTRLogging_Internal.h" | ||
|
||
#include <lib/support/SafeInt.h> | ||
|
||
CHIP_ERROR SetToCATValues(NSSet<NSNumber *> * catSet, chip::CATValues & values) | ||
{ | ||
values = chip::kUndefinedCATs; | ||
|
||
unsigned long long tagCount = catSet.count; | ||
if (tagCount > chip::kMaxSubjectCATAttributeCount) { | ||
MTR_LOG_ERROR("%llu CASE Authenticated Tags cannot be represented in a certificate.", tagCount); | ||
return CHIP_ERROR_INVALID_ARGUMENT; | ||
} | ||
|
||
size_t tagIndex = 0; | ||
for (NSNumber * boxedTag in [catSet.allObjects sortedArrayUsingSelector:@selector(compare:)]) { | ||
auto unboxedTag = boxedTag.unsignedLongLongValue; | ||
if (!chip::CanCastTo<chip::CASEAuthTag>(unboxedTag)) { | ||
MTR_LOG_ERROR("0x%llx is not a valid CASE Authenticated Tag value.", unboxedTag); | ||
return CHIP_ERROR_INVALID_ARGUMENT; | ||
} | ||
|
||
auto tag = static_cast<chip::CASEAuthTag>(unboxedTag); | ||
if (!chip::IsValidCASEAuthTag(tag)) { | ||
MTR_LOG_ERROR("0x%" PRIx32 " is not a valid CASE Authenticated Tag value.", tag); | ||
return CHIP_ERROR_INVALID_ARGUMENT; | ||
} | ||
|
||
values.values[tagIndex++] = tag; | ||
} | ||
|
||
return CHIP_NO_ERROR; | ||
} | ||
|
||
NSSet<NSNumber *> * CATValuesToSet(const chip::CATValues & values) | ||
{ | ||
auto * catSet = [[NSMutableSet alloc] initWithCapacity:values.GetNumTagsPresent()]; | ||
for (auto & value : values.values) { | ||
if (value != chip::kUndefinedCAT) { | ||
[catSet addObject:@(value)]; | ||
} | ||
} | ||
return [NSSet setWithSet:catSet]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters