Key Manager
The Key Manager Service provides secure storage, provisioning and management of secret data. It provides all the cryptographic operations like encryption/decryption and digital signature/verification making one trust store for all partner trust path validation. It manages the lifecycle of encryption/decryption keys, including generation, distribution, administration, and deletion.
This includes keying material such as symmetric keys, asymmetric keys, certificates and algorithm data. It is a web-based key management solution that helps consolidate, control, manage, monitor, all key generation and maintenance of key life cycle required in MOSIP.

- RSA-2048 for all data encryption
Key type | Location | Issuer | Purpose | Example | Updation method(on expiry) | ||
Root | Self signed | Root | Key Generator job or Admin Portal | Automatic | 5 years | ||
Module | Root | Signing, encryption of Base keys | Key Generator job or Admin Portal | Automatic | 3 years | ||
Base | Database | Module | Encryption of registration packet etc. | Automatic | Automatic | 2 years |

Root and Module keys reside in HSM while Base key pair reside in the DB encrypted by Module keys. All references (aliases) containing metadata of keys are present in
mosip_keymgr/key_alias
table. The key_store
table contains encrypted Base keys.The keys are identified as tuple of
app_id
and ref_id
.app_id
(orapplicationId
): Typically, module name e.g.REGISTRATION
.ref_id
(orreferenceId
): Specified only for Base keys (except SIGN*). Eg.10001_110011
*
SIGN
: TBD
Root and Module keys are generated by any one of these methods:
- 1.Using Key Generator job or
- 2.
After the deployment, the initial set of pre-requisite keys has to be generated by the Administrator to complete the Key Manager setup. This generation is a one-time activity, and afterwards, the Key Manager will auto-generate all the required Root key and Module master keys upon expiry of key duration.
Base keys are auto-generated (and updaded on expiry) - the administrator is not required to request for generation. The keys reside in the DB. A new key pair is generated if not found in the DB.

The default validity of the keys may be modified by updating
mosip_keymgr/key_policy_def
table before generating keys.You can revoke Root or Module key by invoking
generateMasterKey
API with force attribute as true. API invalidates existing key and immediately generates new key.You can revoke Base key by invoking
revokeKey
API with the respective applicationId
and referenceId
.- Random AES 256-bit key will be generated, generated random key will be used to encrypt the actual registration packet.
- Random generated key will be encrypted using the certificate received from server. Certificate contains RSA 2048 bit key.
- Certificate Thumbprint will be computed.
- Thumbprint will be prepend to encrypted random key for key identification.
- Finally, the encrypted random key with prepended thumbprint will be concated with encrypted registration packet using #KEY_SPLITTER# as separator.
- Registration packet data will be split to get the encrypted random key, encrypted registration data, certificate thumbprint.
- Identifies the respective private key to decryption process.
- Identified private key will be decrypted with the mapped master key.
- Decrypted private key will be used to decrypt the encrypted random key.
- Decrypt the registration packet using the decrypted random key.
- Returns the decrypted data to REG_PROC.
- Sync Data service requests Key Manager service to provide the reg-client specific certificate. Key identifier will be APP_ID - REGISTRATION, REF_ID - CENTER-ID_MACHINE-ID.
- Key Manager service generate a new key pair, encrypts the private key with REGISTRATION master key and creates a new certificate using same master.
- Returns the certificate to Sync data service. If key pair is already available and is valid, returns the available certificate.
- Sync data service sends the certificate to Registration Client.
- The registration packet will be encrypted using the certificate received from the server after collecting all the required data for registration, including adding the digital signatures required to the registration data, and before saving/writing the data on the Registration Client hard-disk.
- REG_PROC sends request to decrypt the data to Key Manager service with same app_id and ref_id.
Last modified 1yr ago