IMPLEMENTATION OF RSA ALGORITHM IN A CLIENT SERVER MODEL USING C LANGUAGE
- Client host gets a text message from user.
- Client host gets the public key from Server host.
- Client host encodes the message received from user using public key.
- Client host sends the encoded message to the Server host.
- Server host decodes the message using private key.
- Server host displays the encoded message.
- Server host finds the original text message and displays it.
- Client and Server hosts exit.