RequestExtensions.UnprotectBinaryForMachine Method

decrypts the given collection of bytes with the machine key and salt returns an empty collection of bytes on failure This element is introduced in Windows PowerShell 5.0.

Namespace: Microsoft.OneGet.PackageProvider.Bootstrap
Assembly: Microsoft.OneGet.PackageProvider.Bootstrap (in Microsoft.OneGet.PackageProvider.Bootstrap.dll)

Usage

'Usage
Dim binaryData As IEnumerable(Of Byte)
Dim salt As String
Dim returnValue As IEnumerable(Of Byte)

returnValue = RequestExtensions.UnprotectBinaryForMachine(binaryData, salt)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function UnprotectBinaryForMachine ( _
    binaryData As IEnumerable(Of Byte), _
    salt As String _
) As IEnumerable(Of Byte)
[ExtensionAttribute] 
public static IEnumerable<byte> UnprotectBinaryForMachine (
    IEnumerable<byte> binaryData,
    string salt
)
[ExtensionAttribute] 
public:
static IEnumerable<unsigned char>^ UnprotectBinaryForMachine (
    IEnumerable<unsigned char>^ binaryData, 
    String^ salt
)
/** @attribute ExtensionAttribute() */ 
public static IEnumerable<byte> UnprotectBinaryForMachine (
    IEnumerable<byte> binaryData, 
    String salt
)
ExtensionAttribute 
public static function UnprotectBinaryForMachine (
    binaryData : IEnumerable<byte>, 
    salt : String
) : IEnumerable<byte>

Parameters

  • binaryData
    The binary data.
  • salt
    The salt.

Return Value

Returns IEnumerable.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Target Platforms

See Also

Reference

RequestExtensions Class
RequestExtensions Members
Microsoft.OneGet.PackageProvider.Bootstrap Namespace