Python OpenSSL.crypto 模块,PKCS12Type() 实例源码

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

项目:hostapd-mana    作者:adde88    | 项目源码 | 文件源码
def test_type(self):
        """
        L{PKCS12Type} is a type object.
        """
        self.assertIdentical(PKCS12, PKCS12Type)
        self.assertConsistentType(PKCS12, 'PKCS12')
项目:2FAssassin    作者:maxwellkoh    | 项目源码 | 文件源码
def test_type(self):
        """
        `PKCS12Type` is a type object.
        """
        assert PKCS12 is PKCS12Type
        assert is_consistent_type(PKCS12, 'PKCS12')
项目:sslstrip-hsts-openwrt    作者:adde88    | 项目源码 | 文件源码
def test_type(self):
        """
        L{PKCS12Type} is a type object.
        """
        self.assertIdentical(PKCS12, PKCS12Type)
        self.assertConsistentType(PKCS12, 'PKCS12')
项目:OneClickDTU    作者:satwikkansal    | 项目源码 | 文件源码
def test_type(self):
        """
        :py:obj:`PKCS12Type` is a type object.
        """
        self.assertIdentical(PKCS12, PKCS12Type)
        self.assertConsistentType(PKCS12, 'PKCS12')
项目:Docker-XX-Net    作者:kuanghy    | 项目源码 | 文件源码
def test_type(self):
        """
        :py:obj:`PKCS12Type` is a type object.
        """
        self.assertIdentical(PKCS12, PKCS12Type)
        self.assertConsistentType(PKCS12, 'PKCS12')
项目:Docker-XX-Net    作者:kuanghy    | 项目源码 | 文件源码
def test_type(self):
        """
        L{PKCS12Type} is a type object.
        """
        self.assertIdentical(PKCS12, PKCS12Type)
        self.assertConsistentType(PKCS12, 'PKCS12')