Class Certificate
Definition
- Namespace:
- Tizen.Security.SecureRepository
- Assembly:
- Tizen.Security.SecureRepository.dll
- API Level:
- 3
The class that represents a certificate.
public class Certificate
- Inheritance
-
Certificate
Constructors
View SourceCertificate(Byte[], DataFormat)
A constructor of Certificate that takes the binary and its format.
Declaration
public Certificate(byte[] binary, DataFormat format)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | binary | The binary data of a certificate. |
DataFormat | format | The format of the binary data. |
API Level: 3
Properties
View SourceBinary
The binary value of a certificate.
Declaration
public byte[] Binary { get; set; }
Property Value
Type | Description |
---|---|
Byte[] |
API Level: 3
View SourceFormat
The format of the binary value.
Declaration
public DataFormat Format { get; set; }
Property Value
Type | Description |
---|---|
DataFormat |
API Level: 3
Methods
View SourceLoad(String)
Loads Certificate from the given file path.
Declaration
public static Certificate Load(string filePath)
Parameters
Type | Name | Description |
---|---|---|
String | filePath | The path of certificate file to be loaded. |
Returns
Type | Description |
---|---|
Certificate | Loaded certificate class instance. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | The filePath should not be null |
InvalidOperationException | Invalid certificate file format. Provided file path does not exist or cannot be accessed. |