Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756867AbbKRULI (ORCPT ); Wed, 18 Nov 2015 15:11:08 -0500 Received: from mail-wm0-f47.google.com ([74.125.82.47]:33639 "EHLO mail-wm0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753403AbbKRULG (ORCPT ); Wed, 18 Nov 2015 15:11:06 -0500 MIME-Version: 1.0 In-Reply-To: <564CA86C.1000402@skogtun.org> References: <564CA86C.1000402@skogtun.org> Date: Wed, 18 Nov 2015 22:11:04 +0200 Message-ID: Subject: Re: A new, fast and "unbreakable" encryption algorithm From: Ismail Kizir To: Harald Arnesen Cc: linux-kernel@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2779 Lines: 75 Hello Harald, I know that a lot of people thinks that there is a "new amateur in town claiming having invented an unbreakable encryption" :) That's why, I am trying to explain all my logic, publicly to professionals. It's not rocket science. You will "just understand" when you read: Until today, we were looking from the "wrong side" I guess. We were all thinking that we must have a "fixed" key which must never change! Why? I begun to ask that question: "Why the key must be fixed?" and changed the paradigm. And I decided to dynamically update the key in encyption and decryption process. The essential logic of the algorithm is using the key as a "jump table" which is dynamically updated with every "jump" we make. To understand better how it functions, suppose that we don't have a complex function. Given the key body length(L) is a power of 2, and M is an integer to tell us where we are in the "key body": We just take the byte at position M of the key body, we XOR that byte with the byte to be encrypted(X). We increase the byte at position M and "jump to" (M+X)%L So, every time we encrypt a byte, we also change the key. It's a bit more complicated than this. But essentially this is the base logic. In real function, we do more complex operations with more variables like the salt(or nonce) value, the last byte we encrypted, the key checksum(against related key attacks) etc. Briefly, to decypher a ciphertext, a cracker needs to find out the key, and, to find out the key, cracker needs to find out the plaintext, because the key is dynamically updated according the plaintext during encryption process: Impossible! I just want Linux uses a "strong encryption algorithm" to prevent States, besides inalphabet kids, from reading your files :) I believe this algorithm is the future of the encryption. Source code: http://ismail-kizir.blogspot.com/2015/11/hohha-dynamic-xor-algorithm-source-code.html Regards On Wed, Nov 18, 2015 at 6:33 PM, Harald Arnesen wrote: > Ismail Kizir [2015-11-18 06:25]: > >> Hello, >> >> I've developed a new encryption algorithm, which dynamically changes >> the key according to plaintext and practically impossible to break. I >> also opened to public with MIT&GPL dual License. > > "There are two kinds of cryptography in this world: cryptography that > will stop your kid sister from reading your files, and cryptography that > will stop major governments from reading your files." > - Bruce Scheier, Applied Cryptography > -- > Hilsen Harald -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/