当前位置: 首页>>代码示例>>Python>>正文


Python crypto.ensure_ca_filesystem函数代码示例

本文整理汇总了Python中nova.crypto.ensure_ca_filesystem函数的典型用法代码示例。如果您正苦于以下问题:Python ensure_ca_filesystem函数的具体用法?Python ensure_ca_filesystem怎么用?Python ensure_ca_filesystem使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了ensure_ca_filesystem函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_get_encoded_zip

    def test_get_encoded_zip(self):
        with utils.tempdir() as tmpdir:
            self.flags(ca_path=tmpdir)
            crypto.ensure_ca_filesystem()

            ret = self.cloudpipe.get_encoded_zip(self.project)
            self.assertTrue(ret)
开发者ID:375670450,项目名称:nova,代码行数:7,代码来源:test_pipelib.py

示例2: test_encrypt_decrypt_x509

    def test_encrypt_decrypt_x509(self):
        with utils.tempdir() as tmpdir:
            self.flags(ca_path=tmpdir)
            project_id = "fake"
            crypto.ensure_ca_filesystem()

            cert = crypto.fetch_ca(project_id)
            public_key = os.path.join(tmpdir, "public.pem")
            with open(public_key, 'w') as keyfile:
                keyfile.write(cert)

            text = "some @#!%^* test text"
            process_input = text.encode("ascii") if six.PY3 else text
            enc, _err = utils.execute('openssl',
                                     'rsautl',
                                     '-certin',
                                     '-encrypt',
                                     '-inkey', '%s' % public_key,
                                     process_input=process_input,
                                     binary=True)

            dec = crypto.decrypt_text(project_id, enc)
            self.assertIsInstance(dec, bytes)
            if six.PY3:
                dec = dec.decode('ascii')
            self.assertEqual(text, dec)
开发者ID:B3n0n3,项目名称:nova,代码行数:26,代码来源:test_crypto.py

示例3: test_launch_vpn_instance

 def test_launch_vpn_instance(self):
     self.stubs.Set(self.cloudpipe.compute_api,
                    "create",
                    lambda *a, **kw: (None, "r-fakeres"))
     with utils.tempdir() as tmpdir:
         self.flags(ca_path=tmpdir, keys_path=tmpdir)
         crypto.ensure_ca_filesystem()
         self.cloudpipe.launch_vpn_instance(self.context)
开发者ID:375670450,项目名称:nova,代码行数:8,代码来源:test_pipelib.py

示例4: test_encrypt_decrypt_x509

 def test_encrypt_decrypt_x509(self):
     with utils.tempdir() as tmpdir:
         self.flags(ca_path=tmpdir)
         project_id = "fake"
         crypto.ensure_ca_filesystem()
         cert = crypto.fetch_ca(project_id)
         public_key = os.path.join(tmpdir, "public.pem")
         with open(public_key, "w") as keyfile:
             keyfile.write(cert)
         text = "some @#!%^* test text"
         enc, _err = utils.execute(
             "openssl", "rsautl", "-certin", "-encrypt", "-inkey", "%s" % public_key, process_input=text
         )
         dec = crypto.decrypt_text(project_id, enc)
         self.assertEqual(text, dec)
开发者ID:nitishb,项目名称:nova,代码行数:15,代码来源:test_crypto.py

示例5: test_can_generate_x509

    def test_can_generate_x509(self):
        with utils.tempdir() as tmpdir:
            self.flags(ca_path=tmpdir)
            crypto.ensure_ca_filesystem()
            _key, cert_str = crypto.generate_x509_cert("fake", "fake")

            project_cert = crypto.fetch_ca(project_id="fake")

            signed_cert_file = os.path.join(tmpdir, "signed")
            with open(signed_cert_file, "w") as keyfile:
                keyfile.write(cert_str)

            project_cert_file = os.path.join(tmpdir, "project")
            with open(project_cert_file, "w") as keyfile:
                keyfile.write(project_cert)

            enc, err = utils.execute("openssl", "verify", "-CAfile", project_cert_file, "-verbose", signed_cert_file)
            self.assertFalse(err)
开发者ID:nitishb,项目名称:nova,代码行数:18,代码来源:test_crypto.py

示例6: test_can_generate_x509

    def test_can_generate_x509(self):
        with utils.tempdir() as tmpdir:
            self.flags(ca_path=tmpdir)
            crypto.ensure_ca_filesystem()
            _key, cert_str = crypto.generate_x509_cert('fake', 'fake')

            project_cert = crypto.fetch_ca(project_id='fake')

            signed_cert_file = os.path.join(tmpdir, "signed")
            with open(signed_cert_file, 'w') as keyfile:
                keyfile.write(cert_str)

            project_cert_file = os.path.join(tmpdir, "project")
            with open(project_cert_file, 'w') as keyfile:
                keyfile.write(project_cert)

            enc, err = utils.execute('openssl', 'verify', '-CAfile',
                    project_cert_file, '-verbose', signed_cert_file)
            self.assertFalse(err)
开发者ID:B3n0n3,项目名称:nova,代码行数:19,代码来源:test_crypto.py

示例7: test_encrypt_decrypt_x509

 def test_encrypt_decrypt_x509(self):
     tmpdir = tempfile.mkdtemp()
     self.flags(ca_path=tmpdir)
     project_id = "fake"
     try:
         crypto.ensure_ca_filesystem()
         cert = crypto.fetch_ca(project_id)
         public_key = os.path.join(tmpdir, "public.pem")
         with open(public_key, 'w') as keyfile:
             keyfile.write(cert)
         text = "some @#!%^* test text"
         enc, _err = utils.execute('openssl',
                                  'rsautl',
                                  '-certin',
                                  '-encrypt',
                                  '-inkey', '%s' % public_key,
                                  process_input=text)
         dec = crypto.decrypt_text(project_id, enc)
         self.assertEqual(text, dec)
     finally:
         shutil.rmtree(tmpdir)
开发者ID:acomisario,项目名称:nova,代码行数:21,代码来源:test_crypto.py

示例8: test_can_generate_x509

    def test_can_generate_x509(self):
        tmpdir = tempfile.mkdtemp()
        self.flags(ca_path=tmpdir)
        try:
            crypto.ensure_ca_filesystem()
            _key, cert_str = crypto.generate_x509_cert('fake', 'fake')

            project_cert = crypto.fetch_ca(project_id='fake')
            cloud_cert = crypto.fetch_ca()
            # TODO(vish): This will need to be replaced with something else
            #             when we remove M2Crypto
            signed_cert = X509.load_cert_string(cert_str)
            project_cert = X509.load_cert_string(project_cert)
            cloud_cert = X509.load_cert_string(cloud_cert)
            self.assertTrue(signed_cert.verify(project_cert.get_pubkey()))

            if not FLAGS.use_project_ca:
                self.assertTrue(signed_cert.verify(cloud_cert.get_pubkey()))
            else:
                self.assertFalse(signed_cert.verify(cloud_cert.get_pubkey()))
        finally:
            shutil.rmtree(tmpdir)
开发者ID:KarimAllah,项目名称:nova,代码行数:22,代码来源:test_crypto.py

示例9: init_host

 def init_host(self):
     crypto.ensure_ca_filesystem()
开发者ID:674009287,项目名称:nova,代码行数:2,代码来源:manager.py

示例10: _do_test

 def _do_test(mock_create):
     with utils.tempdir() as tmpdir:
         self.flags(ca_path=tmpdir, keys_path=tmpdir, group="crypto")
         crypto.ensure_ca_filesystem()
         self.cloudpipe.launch_vpn_instance(self.context)
开发者ID:stgleb,项目名称:nova,代码行数:5,代码来源:test_pipelib.py


注:本文中的nova.crypto.ensure_ca_filesystem函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。