PasswordProtocol
@available(iOS 13.0, OSX 10.15, watchOS 6.0, tvOS 13.0, *)
public protocol PasswordProtocol : EquatableA type that can represent one-time password objects
This object contains the metadata for a Password
- 
                  
                  The account name DeclarationSwift var name: String { get }
- 
                  
                  The issuer of the one-time password Optional, but recommended DeclarationSwift var issuer: String? { get }
- 
                  
                  An image to associate with a given password Not technically part of the Google Authenticator URI spec but still useful and supported by other URIcreators.DeclarationSwift var image: URL? { get }
- 
                  
                  The generator to be used for creating passwords DeclarationSwift var generator: GeneratorProtocol { get }
- 
                  currentPasswordDefault implementationA computed property representing the current password at any given time. Default ImplementationDeclarationSwift var currentPassword: String? { get }
- 
                  
                  Undocumented DeclarationSwift init(name: String, issuer: String?, image: URL?, generator: GeneratorProtocol)
- 
                  init(url:)Default implementationUndocumented Default ImplementationUndocumented DeclarationSwift init(url: URL) throws
- 
                  ==(_:_:)Extension methodDeclarationSwift static func == (lhs: Self, rhs: Self) -> Bool
- 
                  absoluteURLExtension methodUndocumented DeclarationSwift var absoluteURL: URL { get }
 PasswordProtocol Protocol Reference
        PasswordProtocol Protocol Reference