dlwyatt / ProtectedData

PowerShell Module for securely encrypting and sharing secret data such as passwords.
Apache License 2.0
77 stars 16 forks source link

Certificate parameter cleanup #8

Closed dlwyatt closed 9 years ago

dlwyatt commented 9 years ago

The -CertificateThumbprint and -NewCertificateThumbprint parameters of all commands other than Get-KeyEncryptionCertificate are now deprecated, and thumbprints can be passed directly to the -Certificate and -NewCertificate parameters instead. In addition, you can pass paths to certificate files on the file system or in the Cert:\ drive, or X509Certificate2 objects that were loaded by any other means.

In a future release, the old Thumbprint parameters will be removed, for a simpler API.

dlwyatt commented 9 years ago

This implements #7 .