EncryptedKey
struct EncryptedKey
                - 
                  
                  
Compare two encrypted keys. Keys need to be comparable in order to do lookups.
Declaration
Swift
public static func == (lhs: EncryptedKey, rhs: EncryptedKey) -> BoolParameters
lhsAn encrypted key.
rhsAnother encrypted key.
Return Value
trueif and only iflhsequals torhs. 
- 
                  
                  
The hash value, for being able to use encrypted keys in dictionaries or sets. This should not be confused with the personalized hash of the plaintext key.
Declaration
Swift
public var hashValue: Int { get } 
- 
                  
                  
A textual representation of an encrypted key.
Declaration
Swift
public var description: String { get } 
            View on GitHub
          
      EncryptedKey Extension Reference