AsymmetricSignatureFormatter.CreateSignature Method (array<Byte[])
Microsoft Silverlight will reach end of support after October 2021. Learn more.
When overridden in a derived class, creates the signature for the specified data.
Namespace: System.Security.Cryptography
Assembly: mscorlib.Extensions (in mscorlib.Extensions.dll)
Syntax
'Declaration
Public MustOverride Function CreateSignature ( _
rgbHash As Byte() _
) As Byte()
public abstract byte[] CreateSignature(
byte[] rgbHash
)
Parameters
- rgbHash
Type: array<System.Byte[]
The data to be signed.
Return Value
Type: array<System.Byte[]
The digital signature for the rgbHash parameter.
Remarks
You must specify a key and a hash algorithm before calling this method.
Version Information
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also