func save()

in Sources/UberAuth/Token/KeychainUtility.swift [38:57]


    func save<V: Encodable>(_ value: V, for key: String, accessGroup: String?) -> Bool
    
    /// Retrieves an object from the on device keychain using the supplied `key`
    ///
    /// - Parameters:
    ///   - key: The identifier string used when saving the object
    ///   - accessGroup: The accessGroup for which the operation should be performed
    /// - Returns: If found, an optional type conforming to the Codable protocol
    func get<V: Decodable>(key: String, accessGroup: String?) -> V?
    
    /// Removes the object from the on device keychain corresponding to the supplied `key`
    ///
    /// - Parameters:
    ///   - key: The identifier string used when saving the object
    ///   - accessGroup: The accessGroup for which the operation should be performed
    /// - Returns: A boolean indicating whether or not the delete operation was successful
    func delete(key: String, accessGroup: String?) -> Bool
}

public extension KeychainUtilityProtocol {