NodeJS & SSL - “bad password read”

后端 未结 3 1829
执笔经年
执笔经年 2020-12-15 15:40

Node is failing to create a secure context for SSL communications.

Specifically, I\'m trying to get remote notifications to work on iOS. I use a module, called node-

3条回答
  •  清歌不尽
    2020-12-15 16:03

    The following command will generate an unencrypted key, so you won't need to provide a passphrase:

    openssl rsa -in yourKey.key -out newKey.key
    

    This command will prompt you for the passphrase.

提交回复
热议问题