SecurityManagerError

public enum SecurityManagerError : Error
extension SecurityManagerError: SAPError

Errors of the SecurityManager Provide

  • Failed to read encrypted data encryption key from primary data store

    Declaration

    Swift

    case failedToReadDataEncryptionKey
  • Failed to read aux data encryption key from primary data store

    Declaration

    Swift

    case failedToReadAuxDataEncryptionKey
  • Failed to read data enncryption key using passcode

    Declaration

    Swift

    case failedToReadDataEncryptionKeyUsingPasscode
  • Failed to encrypt data encryption key using derived key

    Declaration

    Swift

    case failedToEncryptDEKUsingPBKDF
  • Failed to read data encryption using symmetric paired access key

    Declaration

    Swift

    case failedToGetDEKUsingSPAK
  • Failed to update the SPAKAuxiliary

    Declaration

    Swift

    case failedToUpdateESPAKAuxiliary
  • Failed to read SPAKAuxiliary with auxiliary key

    Declaration

    Swift

    case failedToReadEESPAKAuxiliaryFromDataStore
  • Failed to read eSPAKPrimary from primary data store

    Declaration

    Swift

    case failedToReadESPAKPrimary
  • Failed to decrypt ESPAKPrimary with primary key

    Declaration

    Swift

    case failedToDecryptESPAKPrimaryWithSPK
  • Failed to dercrypt ESPAKAuxiliary with SPAKPrimary

    Declaration

    Swift

    case failedToDecryptESPAKAuxiliaryWithSPAKPrimary
  • Failed to split secret

    Declaration

    Swift

    case failedToSplitSecret
  • Failed to combine secrets

    Declaration

    Swift

    case failedToCombineSecret
  • A textual representation of this instance.

    Declaration

    Swift

    public var description: String { get }
  • A localized message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A textual representation of this instance, suitable for debugging.

    Declaration

    Swift

    public var debugDescription: String { get }
  • A localized message describing the reason for the failure.

    Declaration

    Swift

    public var failureReason: String? { get }