 | DefaultDataSigningServiceVerify Method |
Verify the input data against the specified signature
Namespace:
SanteDB.DisconnectedClient.Security
Assembly:
SanteDB.DisconnectedClient.Core (in SanteDB.DisconnectedClient.Core.dll) Version: 2.2.1
Syntaxpublic bool Verify(
byte[] data,
byte[] signature,
string keyId = null
)
Public Function Verify (
data As Byte(),
signature As Byte(),
Optional keyId As String = Nothing
) As Boolean
public:
virtual bool Verify(
array<unsigned char>^ data,
array<unsigned char>^ signature,
String^ keyId = nullptr
) sealed
abstract Verify :
data : byte[] *
signature : byte[] *
?keyId : string
(* Defaults:
let _keyId = defaultArg keyId null
*)
-> bool
override Verify :
data : byte[] *
signature : byte[] *
?keyId : string
(* Defaults:
let _keyId = defaultArg keyId null
*)
-> bool Parameters
- data
- Type: SystemByte
[Missing <param name="data"/> documentation for "M:SanteDB.DisconnectedClient.Security.DefaultDataSigningService.Verify(System.Byte[],System.Byte[],System.String)"]
- signature
- Type: SystemByte
[Missing <param name="signature"/> documentation for "M:SanteDB.DisconnectedClient.Security.DefaultDataSigningService.Verify(System.Byte[],System.Byte[],System.String)"]
- keyId (Optional)
- Type: SystemString
[Missing <param name="keyId"/> documentation for "M:SanteDB.DisconnectedClient.Security.DefaultDataSigningService.Verify(System.Byte[],System.Byte[],System.String)"]
Return Value
Type:
Boolean[Missing <returns> documentation for "M:SanteDB.DisconnectedClient.Security.DefaultDataSigningService.Verify(System.Byte[],System.Byte[],System.String)"]
Implements
IDataSigningServiceVerify(Byte, Byte, String)
See Also