class Protocol::HTTP::Header::Authorization

def credentials

@returns [Tuple(String, String)] The username and password.

Splits the header into the credentials.
def credentials
	self.split(/\s+/, 2)
end