| IDataSigningServiceAddSigningKey Method |
Register a key with the provider
Namespace:
SanteDB.Core.Security
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 2.2.1
Syntax void AddSigningKey(
string keyId,
byte[] keyData,
string signatureAlgorithm
)
Sub AddSigningKey (
keyId As String,
keyData As Byte(),
signatureAlgorithm As String
)
void AddSigningKey(
String^ keyId,
array<unsigned char>^ keyData,
String^ signatureAlgorithm
)
abstract AddSigningKey :
keyId : string *
keyData : byte[] *
signatureAlgorithm : string -> unit
Parameters
- keyId
- Type: SystemString
The key identifier to register - keyData
- Type: SystemByte
The key data (passphrase, or any other structured key data) - signatureAlgorithm
- Type: SystemString
The signature algorithm
See Also