blob: 54e19d55bfd4afbffee7f03e85dc85a9f65381f9 [file] [log] [blame]
/**
*
* Copyright (c) 2020-2022 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 "DeviceAttestationCredentialsHolder.h"
#import <Foundation/Foundation.h>
@interface DeviceAttestationCredentialsHolder ()
@property NSData * certificationDeclaration;
@property NSData * firmwareInformation;
@property NSData * deviceAttestationCert;
@property NSData * productAttestationIntermediateCert;
@property NSData * deviceAttestationCertPrivateKey;
@property NSData * deviceAttestationCertPublicKeyKey;
@end
@implementation DeviceAttestationCredentialsHolder
- (DeviceAttestationCredentialsHolder * _Nonnull)
initWithCertificationDeclaration:(NSData * _Nonnull)certificationDeclaration
firmwareInformation:(NSData * _Nonnull)firmwareInformation
deviceAttestationCert:(NSData * _Nonnull)deviceAttestationCert
productAttestationIntermediateCert:(NSData * _Nonnull)productAttestationIntermediateCert
deviceAttestationCertPrivateKey:(NSData * _Nonnull)deviceAttestationCertPrivateKey
deviceAttestationCertPublicKeyKey:(NSData * _Nonnull)deviceAttestationCertPublicKeyKey
{
self = [super init];
if (self) {
_certificationDeclaration = certificationDeclaration;
_firmwareInformation = firmwareInformation;
_deviceAttestationCert = deviceAttestationCert;
_productAttestationIntermediateCert = productAttestationIntermediateCert;
_deviceAttestationCertPrivateKey = deviceAttestationCertPrivateKey;
_deviceAttestationCertPublicKeyKey = deviceAttestationCertPublicKeyKey;
}
return self;
}
- (NSData * _Nonnull)getCertificationDeclaration
{
return _certificationDeclaration;
}
- (NSData * _Nonnull)getFirmwareInformation;
{
return _firmwareInformation;
}
- (NSData * _Nonnull)getDeviceAttestationCert;
{
return _deviceAttestationCert;
}
- (NSData * _Nonnull)getProductAttestationIntermediateCert;
{
return _productAttestationIntermediateCert;
}
- (NSData * _Nonnull)getDeviceAttestationCertPrivateKey;
{
return _deviceAttestationCertPrivateKey;
}
- (NSData * _Nonnull)getDeviceAttestationCertPublicKeyKey;
{
return _deviceAttestationCertPublicKeyKey;
}
@end