My project scenario is to Multicast the file from server to clients. File type: Media Files (mp3 or mpg)
So as the file gets packetized, each packet should get encrypted with public key in server side and will be multicasted. On the client side, the received each packets to be decrypted using private key and displayed on the client machine. This is just like watching live video broadcasted by the server, but broadcasted packets will get encrypted with Public key and decrypted using private key on the clients side. Please suggest me 1) The algorithm for Key generation (public and Private) 2) The algorithm for data encryption using public key 3) What's the maximum size of packet this data encryption algorithm can support
