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.
the key part in above peice of code from
ssh_config_parser.StormConfigis converting config keys to lowercase. e.g. keys likeRSAAuthenticationare becomingrsaauthentication.