简体   繁体   English

X509 对象不检查我在 Azure IoT 中心设备中创建自己的 CA 签名证书时设置的密码

[英]X509 Object does not check the passphrase that I set when create my own CA-signed certificate in Azure IoT Hub Device

Initially, I generate my own X509 Certificate that is CA-signed by following this tutorial (Powershell variant) - https://docs.microsoft.com/en-us/azure/iot-hub/tutorial-x509-scripts最初,我按照本教程(Powershell 变体)生成我自己的 X509 证书,该证书是 CA 签名的 - https://docs.microsoft.com/en-us/azure/iot-hub/tutorial-x509-scripts

Then, I made the following two scenarios:然后,我做了以下两个场景:

  1. Communication from my own laptop (Windows 10) to Azure IoT Hub Device using a .NET Framework app.使用 .NET Framework 应用从我自己的笔记本电脑 (Windows 10) 到 Azure IoT 中心设备的通信。 Here is my simple code:这是我的简单代码:
static void Main(string[] args)
        {
            try
            {
                // Create an X.509 certificate object.
                var cert = new X509Certificate2(@"..\test-device-auth\test-device-auth.pfx", "pass", X509KeyStorageFlags.UserKeySet);
                Console.WriteLine("cert: ");
                Console.WriteLine(cert);

                // Create an authentication object using your X.509 certificate. 
                var auth = new DeviceAuthenticationWithX509Certificate(deviceId, cert);

                // Create the device client.
                var deviceClient = DeviceClient.Create("Arduino-IoT-Hub-Temperature.azure-devices.net", auth, TransportType.Mqtt);

                if (deviceClient == null)
                {
                    Console.WriteLine("Failed to create DeviceClient!");
                }
                else
                {
                    Console.WriteLine("Successfully created DeviceClient!");
                    SendEvent(deviceClient).Wait();
                }

                Console.WriteLine("Exiting...\n");
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error in sample: {0}", ex.Message);
            }
        }

In this case, the program works fine when passing the correct pfx and the correct pass phrase.在这种情况下,程序在传递正确的 pfx 和正确的密码短语时运行良好。 Additionally, when I pass incorrect pass phrase or incorrect pfx, it fails - this is perfectly fine.此外,当我传递不正确的密码短语或不正确的 pfx 时,它会失败 - 这很好。

  1. Communication directly from my Raspberry Pi 3B to the Azure IoT Hub Device using a python script.使用 python 脚本直接从我的 Raspberry Pi 3B 到 Azure IoT Hub 设备的通信。 Here is the code:这是代码:
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
import os
import uuid
from azure.iot.device.aio import IoTHubDeviceClient
from azure.iot.device import Message, X509
import asyncio

messages_to_send = 10

async def main():
    hostname = "Arduino-IoT-Hub-Temperature.azure-devices.net"
    # The device that has been created on the portal using X509 CA signing or Self signing capabilities
    device_id = "test-device-auth"

    x509 = X509(
        cert_file="../test-device-auth/test-device-auth-public.pem",
        key_file="../test-device-auth/test-device-auth-private.pem",
        pass_phrase="pass",
    )

    # The client object is used to interact with your Azure IoT hub.
    device_client = IoTHubDeviceClient.create_from_x509_certificate(
        hostname=hostname, device_id=device_id, x509=x509
    )

    # Connect the client.
    await device_client.connect()

    async def send_test_message(i):
        print("sending message #" + str(i))
        msg = Message("test wind speed " + str(i))
        msg.message_id = uuid.uuid4()
        msg.correlation_id = "correlation-1234"
        # msg.custom_properties["tornado-warning"] = "yes"
        msg.content_encoding = "utf-8"
        msg.content_type = "application/json"
        await device_client.send_message(msg)
        print("done sending message #" + str(i))

    # send `messages_to_send` messages in parallel
    await asyncio.gather(*[send_test_message(i) for i in range(1, messages_to_send + 1)])

    # Finally, shut down the client
    await device_client.shutdown()

if __name__ == "__main__":
    asyncio.run(main())

    # If using Python 3.6 use the following code instead of asyncio.run(main()):
    # loop = asyncio.get_event_loop()
    # loop.run_until_complete(main())
    # loop.close()

In this case, the .pem files are not secured with the pass_phrase and it does not matter if I will set correct, incorrect or no pass_phrase at all.在这种情况下, .pem文件不受 pass_phrase 的保护,我是否设置正确、不正确或根本没有 pass_phrase 都没有关系。

Does anyone know why it is like this and how it can be still secured with the pass_phrase?有谁知道为什么会这样以及如何使用 pass_phrase 来保护它?

When test-device-auth-private.pem was created it wasn't created as an encrypted key blob, so no passphrase is needed.创建test-device-auth-private.pem时,它并未创建为加密的密钥 blob,因此不需要密码。 You can encrypt it via something like openssl pkcs8 -in test-device-auth-private.pem -out test-device-auth-private-enc.pem -topk8 and give a password at the prompt.您可以通过openssl pkcs8 -in test-device-auth-private.pem -out test-device-auth-private-enc.pem -topk8进行加密,并在提示时输入密码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM