示例#1
0
    def from_line(cls, line, lineno=None):
        """
        Parses the given line of text to find the names for the host,
        the type of key, and the key data. The line is expected to be in the
        format used by the openssh known_hosts file.

        Lines are expected to not have leading or trailing whitespace.
        We don't bother to check for comments or empty lines.  All of
        that should be taken care of before sending the line to us.

        @param line: a line from an OpenSSH known_hosts file
        @type line: str
        """
        log = get_logger('paramiko.hostkeys')
        fields = line.split(' ')
        if len(fields) < 3:
            # Bad number of fields
            log.info("Not enough fields found in known_hosts in line %s (%r)" %
                     (lineno, line))
            return None
        fields = fields[:3]

        names, keytype, key = fields
        names = names.split(',')

        # Decide what kind of key we're looking at and create an object
        # to hold it accordingly.
        try:
            if keytype == 'ssh-rsa':
                key = RSAKey(data=base64.decodebytes(key.encode()))
            elif keytype == 'ssh-dss':
                key = DSSKey(data=base64.decodebytes(key.encode()))
            elif keytype == 'ecdsa-sha2-nistp256':
                key = ECDSAKey(data=base64.decodebytes(key.encode()))
            else:
                log.info("Unable to handle key of type %s" % (keytype,))
                return None
        except binascii.Error as e:
            raise InvalidHostKey(line, e)

        return cls(names, key)