jabbera / vsts-authenticode

A task to authenticode sign dlls
MIT License
7 stars 4 forks source link

Warning: Use Cipheriv for counter mode of aes-256-ctr #28

Open doormalena opened 4 years ago

doormalena commented 4 years ago

I noticed the following warning being present in our build pipeline.

(node:4840) Warning: Use Cipheriv for counter mode of aes-256-ctr

We're using YAML and our configuration is like this:

steps:
  - task: jabbera.authenticode-sign.authenticode-sign.authenticode-sign@4
    displayName: "Code sign"
    inputs:
      filePath: |
        **/*.@${{ parameters.extensionsToSign }}
      signRootPath: "${{ parameters.rootDirectory }}"
      timestampServer: "${{ parameters.timeStamper }}"
      timestampServerDelay: 0
      certificateLocation: pfxFile
      pfxFile: "${{ parameters.certificateFilePath }}"
      pfxPassword: "${{ parameters.certificatePassword }}"
      additionalArguments: |
        /debug
        /v

This results in the following output in Azure DevOps: image