Activity #3467
Updated by Thara S Pillai over 1 year ago
* Generate Key Pair: For each pathologist, generate a unique cryptographic key pair (private/public keys). Implement logic for generating an RSA key pair (public/private key). * Use KeyPairGenerator in Java to generate keys. Use user_id from the mas_users table to ensure the key pair is unique for each pathologist. * Store Public Key: store the public key in the mas_users table. and associate keys with pathologists - database Ref: https://medium.com/javajams/unlocking-the-power-of-digital-signatures-in-spring-boot-apis-298c687fc411 https://github.com/eidankhan/digital-signature-demo