Skip to main content
Certain commands, such as displayInput, require a digital signature to ensure the integrity of the request.

Key Management

The client system is responsible for generating an RSA SHA-256 private-public key pair.
  • The Private Key must be maintained securely on your server.
  • The Public Key is used by the VPOS to verify the request.

C# Implementation

Below is an example of how to sign a message and verify the signature using PKCS#1 padding.
C#