This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Description
else:
# find first whitespace, and split there
i = 0
while (i < len(line)) and not line[i].isspace():
i += 1
if i == len(line):
raise Exception('Unparsable line: %r' % line)
key = line[:i].lower()
value = line[i:].lstrip()
the key part in above peice of code from ssh_config_parser.StormConfig is converting config keys to lowercase. e.g. keys like RSAAuthentication are becoming rsaauthentication.