 | SignatureServiceBaseGenerateKeys Method |
Generates an asymmetric Keypair using the provided passPhrase as the Key Name
Namespace: Aml.Engine.ServicesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic abstract (string PublicKey, string PrivateKey) GenerateKeys(
string passPhrase
)
Public MustOverride Function GenerateKeys (
passPhrase As String
) As (PublicKey As String, PrivateKey As String)
public:
virtual ValueTuple<String^, String^> GenerateKeys(
String^ passPhrase
) abstract
Parameters
- passPhrase String
- The pass phrase to encrypt the key.
Return Value
ValueTupleString,
StringThe public, private key pair.
Implements
ISigningGenerateKeys(String)
See Also