I am building an android sms messaging application that encrypt's a message at the sender site before sending. However, while converting from the message to a polynomial m whose coefficients are -1, 0, 1, I am using Base-3 conversion. Because of this each character in the sam is being converted into 5 coefficients of the polynomial. This allows me to send only 32( 5 * 32 = 160 ) characters at max. How can I convert a message to a polynomial so that I can send more characters??
Hope I made the problem clear!!!!