Author Topic: Encrypted Walkie Talkies  (Read 6744 times)

0 Members and 6 Guests are viewing this topic.

xor

  • Guest
Encrypted Walkie Talkies
« on: August 07, 2011, 05:46:50 am »
So I have a quick idea when I was looking at walkie talkies. Wouldn't it be cool if they had encryption on them? So you could both set passwords, or upload a secret key on both devices and all communications would automatically be encrypted between the two.


I had a search for some online and they DO exist, but they're ridiculously expensive. I was wondering if anyone had any hardware experience to attempt to undertake this project?

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #1 on: August 07, 2011, 10:19:20 am »
Really interesting idea/project, hope someone would be able to do something like his :D
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline petermlm

  • Knight
  • **
  • Posts: 226
  • Cookies: 7
  • Information is Power
    • View Profile
    • Security Check
Re: Encrypted Walkie Talkies
« Reply #2 on: August 07, 2011, 11:49:13 am »
LOL. The encryption part is easy, more less. But we don't really have access to the hardware. Still great idea!

Offline Stackprotector

  • Administrator
  • Titan
  • *
  • Posts: 2515
  • Cookies: 205
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #3 on: August 07, 2011, 12:34:46 pm »
They already exists;)
~Factionwars

xor

  • Guest
Re: Encrypted Walkie Talkies
« Reply #4 on: August 07, 2011, 12:35:57 pm »
petermlm, there are schematics for walkie talkies all over the net. It would only be a matter of adding encryption / decryption to one. Most of the schematics I have found though are all relatively short range devices, I'd like one which is at least 2km minimum.


Factionwars: I KNOW they already exist, as I said in my first post. I just thought we should build some :P

« Last Edit: August 07, 2011, 12:36:28 pm by xor »

Offline Stackprotector

  • Administrator
  • Titan
  • *
  • Posts: 2515
  • Cookies: 205
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #5 on: August 07, 2011, 01:48:10 pm »
petermlm, there are schematics for walkie talkies all over the net. It would only be a matter of adding encryption / decryption to one. Most of the schematics I have found though are all relatively short range devices, I'd like one which is at least 2km minimum.


Factionwars: I KNOW they already exist, as I said in my first post. I just thought we should build some :P


awh, yhea, just woke up:).
but they need some pretty good chip to encrypt realtime audio i geuss;)
~Factionwars

Offline petermlm

  • Knight
  • **
  • Posts: 226
  • Cookies: 7
  • Information is Power
    • View Profile
    • Security Check
Re: Encrypted Walkie Talkies
« Reply #6 on: August 07, 2011, 04:48:12 pm »
but they need some pretty good chip to encrypt realtime audio i geuss;)

Yeah, probably an integrated system design to make the encryption on the fly would be something very specific and not easy to get in the market. Or at least cheap to buy.

Or maybe if the encryption algorithm was programed directly in an assembly language for maximum eficiency. A simple MIPS processor would do the trick, lol.

One other thing. Encryption on the fly can't be very secure. A good encryption algorithm needs "space to work", that is, it need to have a piece of data and apply various operations in it to be secure. If an algorithm has just a limited peice of information like in this case one second of the audio, then even with a password the encryption the code would be easy to crack by brute force.
On the other hand, if instep of a second the audio would be one minute, then there would be space to apply a more complex encryption algorithm way harder to decode.

But well if they exist there must be a possibility to do this, even with a chat program, lol.

Offline FuyuKitsune

  • Knight
  • **
  • Posts: 292
  • Cookies: 21
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #7 on: August 07, 2011, 06:47:04 pm »
I would use a small electronic device to encrypt the audio and just plug it into the walkie-talkie. A phone or PSP or something would be powerful enough to encrypt the audio. Just implement a stream cipher properly and it would be secure.

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #8 on: August 07, 2011, 09:09:19 pm »
I would use a small electronic device to encrypt the audio and just plug it into the walkie-talkie. A phone or PSP or something would be powerful enough to encrypt the audio. Just implement a stream cipher properly and it would be secure.

Yah, that was my thought first too. Instead of modding something existing(which may be hard). Simply add another layer of communication.
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline gh0st

  • Sir
  • ***
  • Posts: 575
  • Cookies: 8
  • #DEDSec
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #9 on: August 08, 2011, 08:01:59 am »
well I like the part of create an algoritm of encryptation that prevents to be intercepted by a X person but the part of hardware would be a bit hard
creating an algoritm of encrptation unbreakable would be very interesting

Offline petermlm

  • Knight
  • **
  • Posts: 226
  • Cookies: 7
  • Information is Power
    • View Profile
    • Security Check
Re: Encrypted Walkie Talkies
« Reply #10 on: August 08, 2011, 12:54:20 pm »
well I like the part of create an algoritm of encryptation that prevents to be intercepted by a X person but the part of hardware would be a bit hard
creating an algoritm of encrptation unbreakable would be very interesting

Indeed! I've never explored audio encryption, only text encryption. That would be a nice project. Developing an algorithm for audio encryption of an audio file like mp3 or wav. Later developing an algorithm for audio encryption on the fly, there is, encrypt as you you speak, get it?

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #11 on: August 08, 2011, 08:11:49 pm »
well I like the part of create an algoritm of encryptation that prevents to be intercepted by a X person but the part of hardware would be a bit hard
creating an algoritm of encrptation unbreakable would be very interesting

No encryption is unbreakable :P



Indeed! I've never explored audio encryption, only text encryption. That would be a nice project. Developing an algorithm for audio encryption of an audio file like mp3 or wav. Later developing an algorithm for audio encryption on the fly, there is, encrypt as you you speak, get it?

Text and audio encryption are exactly the same. Any encryption form really, be it images, films, audio, executables and what have you. Its all the same, changing of the byte values in a very spesific way and being able to reverse that action back to the original data.
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline petermlm

  • Knight
  • **
  • Posts: 226
  • Cookies: 7
  • Information is Power
    • View Profile
    • Security Check
Re: Encrypted Walkie Talkies
« Reply #12 on: August 08, 2011, 08:58:19 pm »
Text and audio encryption are exactly the same. Any encryption form really, be it images, films, audio, executables and what have you. Its all the same, changing of the byte values in a very spesific way and being able to reverse that action back to the original data.

Yes I know. I was thinking in encrypting an audio file to another audio file, in a way that if you would open it with an audio player you would listen to something very weired, lol.

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: Encrypted Walkie Talkies
« Reply #13 on: August 09, 2011, 10:11:15 am »
Yes I know. I was thinking in encrypting an audio file to another audio file, in a way that if you would open it with an audio player you would listen to something very weired, lol.

You could do that, just dont change the file-header part of the file, only the file data. Then you would get a very weird sounding file :P
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline petermlm

  • Knight
  • **
  • Posts: 226
  • Cookies: 7
  • Information is Power
    • View Profile
    • Security Check
Re: Encrypted Walkie Talkies
« Reply #14 on: August 09, 2011, 11:21:35 am »
You could do that, just dont change the file-header part of the file, only the file data. Then you would get a very weird sounding file :P

Yeah, xD. Tell you what. I going to explore that, expect result still today (as I said today, expect theme tomorrow, xD!)