I am trying to simultaneously encrypt a message to multiple public keys using ECC in python. The modules I have tried include a number of seccure-based modules, along with https://pypi.python.org/pypi/ecc
Can anyone help me with this? To be clear, I am trying to avoid encrypting a separate ciphertext for each public key, which is a linear expansion factor; ECC can achieve far better.
(sks-ecc is the only implementation I've seen to succeed at this at all, and there doesn't seem to be availability in python.)