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
Asked
Active
Viewed 397 times
-1
-
Exact duplicate (same user): [voice encryption on fly in mobile phones](http://stackoverflow.com/questions/4007651/voice-encryption-on-fly-in-mobile-phones) – Paul R Oct 24 '10 at 22:08
-
Hi, on Symbian the only possibility is C++ for such application. BR STeN – STeN Oct 25 '10 at 05:54
1 Answers
0
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.

David Watson
- 2,031
- 2
- 13
- 17
-
Thank You sir but i wanted to implement this application for mobiles and is in search of some API to access voice calls so that they can be encrypted and could be sent through VOIP. can you please suggest some API for j2me or symbian c++ which would help me in my job. – Pratik Agrawal Oct 24 '10 at 12:58
-