本文整理汇总了VB.NET中System.Security.Cryptography.RSACryptoServiceProvider.SignData方法的典型用法代码示例。如果您正苦于以下问题:VB.NET RSACryptoServiceProvider.SignData方法的具体用法?VB.NET RSACryptoServiceProvider.SignData怎么用?VB.NET RSACryptoServiceProvider.SignData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Security.Cryptography.RSACryptoServiceProvider
的用法示例。
在下文中一共展示了RSACryptoServiceProvider.SignData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: RSACSPExample
' 导入命名空间
Imports System.Security.Cryptography
Imports System.Text
Module RSACSPExample
Sub Main()
Try
' Create a UnicodeEncoder to convert between byte array and string.
Dim ByteConverter As New ASCIIEncoding
Dim dataString As String = "Data to Sign"
' Create byte arrays to hold original, encrypted, and decrypted data.
Dim originalData As Byte() = ByteConverter.GetBytes(dataString)
Dim signedData() As Byte
' Create a new instance of the RSACryptoServiceProvider class
' and automatically create a new key-pair.
Dim RSAalg As New RSACryptoServiceProvider
' Export the key information to an RSAParameters object.
' You must pass true to export the private key for signing.
' However, you do not need to export the private key
' for verification.
Dim Key As RSAParameters = RSAalg.ExportParameters(True)
' Hash and sign the data.
signedData = HashAndSignBytes(originalData, Key)
' Verify the data and display the result to the
' console.
If VerifySignedHash(originalData, signedData, Key) Then
Console.WriteLine("The data was verified.")
Else
Console.WriteLine("The data does not match the signature.")
End If
Catch e As ArgumentNullException
Console.WriteLine("The data was not signed or verified.")
End Try
End Sub
Function HashAndSignBytes(ByVal DataToSign() As Byte, ByVal Key As RSAParameters) As Byte()
Try
' Create a new instance of RSACryptoServiceProvider using the
' key from RSAParameters.
Dim RSAalg As New RSACryptoServiceProvider
RSAalg.ImportParameters(Key)
' Hash and sign the data. Pass a new instance of SHA1CryptoServiceProvider
' to specify the use of SHA1 for hashing.
Return RSAalg.SignData(DataToSign, New SHA1CryptoServiceProvider)
Catch e As CryptographicException
Console.WriteLine(e.Message)
Return Nothing
End Try
End Function
Function VerifySignedHash(ByVal DataToVerify() As Byte, ByVal SignedData() As Byte, ByVal Key As RSAParameters) As Boolean
Try
' Create a new instance of RSACryptoServiceProvider using the
' key from RSAParameters.
Dim RSAalg As New RSACryptoServiceProvider
RSAalg.ImportParameters(Key)
' Verify the data using the signature. Pass a new instance of SHA1CryptoServiceProvider
' to specify the use of SHA1 for hashing.
Return RSAalg.VerifyData(DataToVerify, New SHA1CryptoServiceProvider, SignedData)
Catch e As CryptographicException
Console.WriteLine(e.Message)
Return False
End Try
End Function
End Module
示例2: RSACSPExample
' 导入命名空间
Imports System.Security.Cryptography
Imports System.Text
Imports System.IO
Module RSACSPExample
Sub Main()
Try
Dim ByteConverter As New ASCIIEncoding
' Create some bytes to be signed.
Dim dataBytes As Byte() = ByteConverter.GetBytes("Here is some data to sign!")
' Create a buffer for the memory stream.
' VB automatically pads arrays with an extra
' Digit of "0".
' RSACryptoServiceProvider will not verify
' the buffer if the automatic padding is
' present. To remove the padding, decrement
' the buffer length by 1.
Dim buffer(dataBytes.Length - 1) As Byte
' Create a MemoryStream.
Dim mStream As New MemoryStream(buffer)
' Write the bytes to the stream and flush it.
mStream.Write(dataBytes, 0, dataBytes.Length)
mStream.Flush()
' Create a new instance of the RSACryptoServiceProvider class
' and automatically create a new key-pair.
Dim RSAalg As New RSACryptoServiceProvider
' Export the key information to an RSAParameters object.
' You must pass true to export the private key for signing.
' However, you do not need to export the private key
' for verification.
Dim Key As RSAParameters = RSAalg.ExportParameters(True)
' Hash and sign the data.
Dim signedData As Byte() = HashAndSignBytes(mStream, Key)
' Verify the data and display the result to the
' console.
If VerifySignedHash(dataBytes, signedData, Key) Then
Console.WriteLine("The data was verified.")
Else
Console.WriteLine("The data does not match the signature.")
End If
' Close the MemoryStream.
mStream.Close()
Catch e As ArgumentNullException
Console.WriteLine("The data was not signed or verified")
End Try
End Sub
Function HashAndSignBytes(ByVal DataStream As Stream, ByVal Key As RSAParameters) As Byte()
Try
' Reset the current position in the stream to
' the beginning of the stream (0). RSACryptoServiceProvider
' can't verify the data unless the stream position
' is set to the starting position of the data.
DataStream.Position = 0
' Create a new instance of RSACryptoServiceProvider using the
' key from RSAParameters.
Dim RSAalg As New RSACryptoServiceProvider
RSAalg.ImportParameters(Key)
' Hash and sign the data. Pass a new instance of SHA1CryptoServiceProvider
' to specify the use of SHA1 for hashing.
Return RSAalg.SignData(DataStream, New SHA1CryptoServiceProvider)
Catch e As CryptographicException
Console.WriteLine(e.Message)
Return Nothing
End Try
End Function
Function VerifySignedHash(ByVal DataToVerify() As Byte, ByVal SignedData() As Byte, ByVal Key As RSAParameters) As Boolean
Try
' Create a new instance of RSACryptoServiceProvider using the
' key from RSAParameters.
Dim RSAalg As New RSACryptoServiceProvider
RSAalg.ImportParameters(Key)
' Verify the data using the signature. Pass a new instance of SHA1CryptoServiceProvider
' to specify the use of SHA1 for hashing.
Return RSAalg.VerifyData(DataToVerify, New SHA1CryptoServiceProvider, SignedData)
Catch e As CryptographicException
Console.WriteLine(e.Message)
Return False
End Try
End Function
End Module
示例3: RSACSPExample
' 导入命名空间
Imports System.Security.Cryptography
Imports System.Text
Module RSACSPExample
Sub Main()
Try
' Create a UnicodeEncoder to convert between byte array and string.
Dim ByteConverter As New ASCIIEncoding
Dim dataString As String = "Data to Sign"
' Create byte arrays to hold original, encrypted, and decrypted data.
Dim originalData As Byte() = ByteConverter.GetBytes(dataString)
Dim signedData() As Byte
Dim smallArray() As Byte
' Create a new instance of the RSACryptoServiceProvider class
' and automatically create a new key-pair.
Dim RSAalg As New RSACryptoServiceProvider
' Export the key information to an RSAParameters object.
' You must pass true to export the private key for signing.
' However, you do not need to export the private key
' for verification.
Dim Key As RSAParameters = RSAalg.ExportParameters(True)
' Hash and sign the data. Start at the fifth offset
' only use data from the next 7 bytes.
signedData = HashAndSignBytes(originalData, Key, 5, 7)
' The previous function only signed one segment
' of the array. Create a new array for verification
' that only holds the data that was actually signed.
'
' Initialize the array.
smallArray = New Byte(6) {}
' Copy 7 bytes starting at the 5th index to
' the new array.
Array.Copy(originalData, 5, smallArray, 0, 7)
' Verify the data and display the result to the
' console.
If VerifySignedHash(smallArray, signedData, Key) Then
Console.WriteLine("The data was verified.")
Else
Console.WriteLine("The data does not match the signature.")
End If
Catch e As ArgumentNullException
Console.WriteLine("The data was not signed or verified")
End Try
End Sub
Function HashAndSignBytes(ByVal DataToSign() As Byte, ByVal Key As RSAParameters, ByVal Index As Integer, ByVal Length As Integer) As Byte()
Try
' Create a new instance of RSACryptoServiceProvider using the
' key from RSAParameters.
Dim RSAalg As New RSACryptoServiceProvider
RSAalg.ImportParameters(Key)
' Hash and sign the data. Pass a new instance of SHA1CryptoServiceProvider
' to specify the use of SHA1 for hashing.
Return RSAalg.SignData(DataToSign, Index, Length, New SHA1CryptoServiceProvider)
Catch e As CryptographicException
Console.WriteLine(e.Message)
Return Nothing
End Try
End Function
Function VerifySignedHash(ByVal DataToVerify() As Byte, ByVal SignedData() As Byte, ByVal Key As RSAParameters) As Boolean
Try
' Create a new instance of RSACryptoServiceProvider using the
' key from RSAParameters.
Dim RSAalg As New RSACryptoServiceProvider
RSAalg.ImportParameters(Key)
' Verify the data using the signature. Pass a new instance of SHA1CryptoServiceProvider
' to specify the use of SHA1 for hashing.
Return RSAalg.VerifyData(DataToVerify, New SHA1CryptoServiceProvider, SignedData)
Catch e As CryptographicException
Console.WriteLine(e.Message)
Return False
End Try
End Function
End Module