Example, an encryption algorithm based on Chebyshev polynomials. The domain of the message must be in [-1,1] while the ASCII table is 0 – 255 how does it encrypt it?
Chebyshev polynomials: http://www.cecm.sfu.ca/CAG/papers/Cheb.pdf
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Normalize your input from
0-255range to[-1,1]:N(x) = x/128 - 1and useN(x)as input to your encryption algorithm instead ofx. For other ranges just use different normalization function.