Author Topic: Encryption with no back-door  (Read 731 times)

0 Members and 2 Guests are viewing this topic.

Offline SBTlauien

  • Disciple
  • ***
  • Posts: 454
  • ส็็็็็็็็็.ส็็็็็็็็็.ส็็็็็็็็็
    • View Profile
Encryption with no back-door
« on: October 28, 2014, 11:26:21 am »
What are some encryption programs that have no backdoor?

Offline kolokol-1

  • Devotee
  • **
  • Posts: 121
  • Quasi-knowledgeable Shitposter
    • View Profile
Re: Encryption with no back-door
« Reply #1 on: October 28, 2014, 12:10:17 pm »
None, all have zero day exploits

There's too much gubmint money/threats to be had for any company to make one without them

Offline -SpectraL

  • Commandant
  • ****
  • Posts: 1,605
  • Sinking kidiots since 1989
    • View Profile
Re: Encryption with no back-door
« Reply #2 on: October 28, 2014, 12:17:02 pm »

I posted a script on Zoklet once which had been encrypted with a high level of code encryption, and two months later a member posted the contents while declaring he had cracked it. &Totse and Zoklet were full of cyber feds, so beware.

Offline NiggerTree

  • Adherent
  • *
  • !
  • Posts: 31
    • View Profile
Re: Encryption with no back-door
« Reply #3 on: October 28, 2014, 12:54:22 pm »
encfs (recently audited), dm-crypt (probably), ecryptfs (probably), diskcryptor (probably).

Don't trust anything proprietary, for obvious reasons.

Offline SBTlauien

  • Disciple
  • ***
  • Posts: 454
  • ส็็็็็็็็็.ส็็็็็็็็็.ส็็็็็็็็็
    • View Profile
Re: Encryption with no back-door
« Reply #4 on: October 28, 2014, 05:10:45 pm »
I've read that AxCrypt has no backdoor.  BS?

Offline -SpectraL

  • Commandant
  • ****
  • Posts: 1,605
  • Sinking kidiots since 1989
    • View Profile
Re: Encryption with no back-door
« Reply #5 on: October 28, 2014, 05:19:29 pm »

Could use WinZip or WinRar and put a long-ass random password on it.

Offline Prometheus

  • Disciple
  • ***
  • Posts: 411
    • View Profile
Re: Encryption with no back-door
« Reply #6 on: October 28, 2014, 06:05:09 pm »
A good rule of thumb is that if it's been around for a while, if it's relatively popular, and the code is open source, it's pretty damn tricky to put a back door in there.

When the NSA corrupted the RSA encryption, it wasn't a flaw in the encryption algorithm at all, it was in the random number generator. To the best of my knowledge, the RSA algorithm is still cryptographically sound, though clearly RSA, the company, can't be trusted at all.
I'll try anything once, and twice to be sure.

Offline Not An Alt

  • Adherent
  • *
  • Posts: 20
    • View Profile
Re: Encryption with no back-door
« Reply #7 on: November 07, 2014, 09:56:06 am »
Use open-source programs where the code was audited, and compile the program from the source.

Offline Lanny

  • Zealot
  • ****
  • Posts: 1,123
    • View Profile
Re: Encryption with no back-door
« Reply #8 on: November 10, 2014, 09:25:57 pm »
It's probably not a great idea but you could write your own OTP program. It's easy enough that you could do it with minimal programming experience assuming you had secure PRNG (Java's standard SecureRandom should be good enough). Of course your keys end up being as big as your files, but at least you can actually be 100% sure it's secure.