Python paramiko 模块,SecurityOptions() 实例源码

我们从Python开源项目中,提取了以下16个代码示例,用于说明如何使用paramiko.SecurityOptions()

项目:watchmen    作者:lycclsltt    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.

        @rtype: str
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:watchmen    作者:lycclsltt    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a L{SecurityOptions} object which can be used to tweak the
        encryption algorithms this transport will permit, and the order of
        preference for them.

        @return: an object that can be used to change the preferred algorithms
            for encryption, digest (hash), public key, and key exchange.
        @rtype: L{SecurityOptions}
        """
        return SecurityOptions(self)
项目:SublimeRemoteGDB    作者:summerwinter    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:SublimeRemoteGDB    作者:summerwinter    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:obsoleted-vpduserv    作者:InfraSIM    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:obsoleted-vpduserv    作者:InfraSIM    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:kekescan    作者:xiaoxiaoleo    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:kekescan    作者:xiaoxiaoleo    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:wetland    作者:ohmyadd    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:wetland    作者:ohmyadd    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:RemoteTree    作者:deNULL    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:RemoteTree    作者:deNULL    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:PyQYT    作者:collinsctk    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:PyQYT    作者:collinsctk    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)
项目:BD_T2    作者:jfmolano1587    | 项目源码 | 文件源码
def get_security_options(self):
        """
        Return a `.SecurityOptions` object which can be used to tweak the
        encryption algorithms this transport will permit (for encryption,
        digest/hash operations, public keys, and key exchanges) and the order
        of preference for them.
        """
        return SecurityOptions(self)
项目:BD_T2    作者:jfmolano1587    | 项目源码 | 文件源码
def __repr__(self):
        """
        Returns a string representation of this object, for debugging.
        """
        return '<paramiko.SecurityOptions for %s>' % repr(self._transport)