I want to develop an application to encrypt voice calls on the fly. Is it feasible?
which programming language should be preferred for symbian O.S
I want to develop an application to encrypt voice calls on the fly. Is
Share
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.
It has already been done: http://en.wikipedia.org/wiki/Skype_security
To implement it, you would need a fast language (a delay of no more than maybe 10 milliseconds, because you still have network latency to deal with) so something like C or C++, maybe Java when used with JIT. Check out Java SE Security Package for simple SSL connections.
Of course, the easy way to do this would just be an ssh or VPN tunnel.