Authentication
RegistryConfiguration.swift:117struct Authentication
struct Authentication
import PackageRegistry
struct RegistryConfiguration
init()
init(from decoder: Decoder) throws
static let version: Version
var defaultRegistry: Registry?
var explicitlyConfigured: Bool { get }
var registryAuthentication: [String : Authentication]
var scopedRegistries: [PackageIdentity.Scope : Registry]
var security: Security?
mutating func add(authentication: Authentication, for registryURL: URL) throws
func authentication(for registryURL: URL) throws -> Authentication?
func encode(to encoder: Encoder) throws
mutating func merge(_ other: RegistryConfiguration)
func registry(for scope: PackageIdentity.Scope) -> Registry?
func registry(for package: PackageIdentity) -> Registry?
mutating func removeAuthentication(for registryURL: URL)
func signing(for package: PackageIdentity.RegistryIdentity, registry: Registry) -> Security.Signing
enum AuthenticationType
struct Security
enum Version
protocol Decodable
A type that can decode itself from an external representation.
protocol Encodable
A type that can encode itself to an external representation.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
init(from decoder: any Decoder) throws
init(type: AuthenticationType, loginAPIPath: String? = nil)
var loginAPIPath: String?
var type: AuthenticationType
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.