Share via


RequestExtensions.ProtectBinaryForMachine Method

Encrypts a collection of bytes with the machine key and salt. This element is introduced in Windows PowerShell 5.0.

Namespace: Microsoft.OneGet.ServicesProvider.Common
Assembly: Microsoft.OneGet.ServicesProvider.Common (in Microsoft.OneGet.ServicesProvider.Common.dll)

Usage

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

returnValue = RequestExtensions.ProtectBinaryForMachine(binaryData, salt)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ProtectBinaryForMachine ( _
    binaryData As IEnumerable(Of Byte), _
    salt As String _
) As IEnumerable(Of Byte)
[ExtensionAttribute] 
public static IEnumerable<byte> ProtectBinaryForMachine (
    IEnumerable<byte> binaryData,
    string salt
)
[ExtensionAttribute] 
public:
static IEnumerable<unsigned char>^ ProtectBinaryForMachine (
    IEnumerable<unsigned char>^ binaryData, 
    String^ salt
)
/** @attribute ExtensionAttribute() */ 
public static IEnumerable<byte> ProtectBinaryForMachine (
    IEnumerable<byte> binaryData, 
    String salt
)
ExtensionAttribute 
public static function ProtectBinaryForMachine (
    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.ServicesProvider.Common Namespace