I'm developing a java project that uses messages as a way of communication between entities in a delivery chain.
These messages were encrypted (RSA) by one entity and then decrypted by the next one in the chain. Is it possible to implement Multicast/Broadcast encryption in java so that one entity will encrypt it and then all of them in the chain can decrypt it?
Thank you!