Key generation

Key Retrieval Process:

  1. You need to go to the key generation page.

  2. Generate a key pair.

  3. Save the private_key portion on your side.

  4. Send the public_key portion to the bank employee.

  5. After the bank employee completes the registration, all necessary data for working with signing will be sent to you.

The following parameters will be provided:

Key Parameters for Signing

The keys are generated using the following parameters:

  • kty: "EC" (Elliptic Curve)

  • crv: "P-256" - (ES256) - the most common curve, supported by most frameworks and browsers, and provides a sufficient level of security.

  • use: "sig" - indicates that the key is used for signature.

  • alg: "ES256".

They are displayed in X.509 PEM Format.

Example Key Appearance:

Last updated