Stronger Than AES256 Encryption? (2024)

Results 1 to 15 of 16

  1. 23rd August 2017,08:11 AM #1

    Join Date
    Jul 2017
    Location
    Israel
    Posts
    22
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Stronger Than AES256 Encryption?

    US residents are limited to 256bit encryption by law; but for non-us residents, I assume the sky can be the limit, in terms of encryption strength. Is there "any" form of encryption stronger than AES256 available for non-us residents, say for encrpting documents, emails and web-surfing?
  2. 23rd August 2017,10:53 AM #2

    Join Date
    May 2017
    Location
    www
    Posts
    135
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Currently, there is no EU legislation that requires tech companies to disclose the keys to encrypted materials to law enforcement authorities, or to decrypt communications upon the request of a government.

    Source: Government Access to Encrypted Communications: European Union

    As for the sky is the limit, Quantum cryptography could be the most advanced level of encryption.

    HOW THE RANDOM NUMBER GENERATOR WORKS
    The random number generators used today are based on computer algorithms or the randomness of physical processes, meaning they are essentially complex versions of rolling dice over and over again to get random numbers.
    But while the numbers generated appear to be random, knowing certain information, such as how many ‘dice’ are being used, can allow hackers to work out the numbers, leaving secured data vulnerable.
    To overcome this problem, the new chip generates random numbers based on the quantum properties of light - a process that is inherently random and therefore impossible to predict no matter how much information is known.

  3. 23rd August 2017,04:19 PM #3

    Join Date
    Nov 2008
    Posts
    415
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    gpg secret keys are routinely 1024 or 2048 bits.

    If I flip one balanced coin 5000 times, no one is going to be able to guess that 5000 bit sequence, regardless of knowing that only one coin was used to generate it. If it is pseudo-random numbers that is being referred to, no one uses pseudo-random numbers for encryption these days (unless they are running ancient hardware).

    Additional comments:

    It seems like there is a confusion, at least to me, of symmetric key encryption vs. public-private key encryption. The "number of dice" observation makes sense if you're talking about symmetric encryption, but those comments are coupled with random key generation (i.e. public-private keys).

    Anyone know a reference for the law, which permits 2048+ bit encryption for public-private keys, but prohibits >256 bits for symmetric keys?

    Last edited by dswaner; 23rd August 2017 at 05:36 PM.Reason: Additional comments
  4. 24th August 2017,03:49 AM #4

    Join Date
    Jun 2005
    Location
    Montreal, Québec, Canada
    Posts
    8,830
    Mentioned
    22 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Stronger Than AES256 Encryption? (12) Originally Posted by r12jkf3

    US residents are limited to 256bit encryption by law; but for non-us residents, I assume the sky can be the limit, in terms of encryption strength. Is there "any" form of encryption stronger than AES256 available for non-us residents, say for encrpting documents, emails and web-surfing?

    Threefish (twofish) encryption is stronger than AES, and I am advised, it uses less cpu cycles. I was also advised that the reason AES was chosen, was because it's more easily crackable than the ones I mentioned.

    You could use threefish with some Cipher Block Chaining (CBC). Bruce Schnier is the one who developed these two. I have used them and 3des with CBC for software I sold to banks.

    Leslie in Montreal

    Interesting web sites list
    http://forums.fedoraforum.org/showth...40#post1697840

  5. 24th August 2017,03:00 PM #5

    Join Date
    Nov 2008
    Posts
    415
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    I briefly looked around http://csrc.nist.gov/, and was not able to find anything about legal maximum key lengths or security strengths - but did find some requirements that specified just the opposite - that certain minimum key lengths and security strengths were unacceptable.

    I did learn to distinguish between key lengths and security strengths:

    The security strength is measured in bits and is, basically, a measure of the difficulty of discovering the key. ... For example, RSA using a key length of 1024 bits (i.e., 1024-bit RSA) has a security strength of 80 bits, as does 2-key Triple DES, while 2048-bit RSA and 3-key Triple DES have a security strength of 112 bits.

  6. 24th August 2017,03:04 PM #6

    Join Date
    Aug 2010
    Location
    Al Ain, UAE
    Posts
    2,028
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    AFAIK, AES256 is secure.

    Problems with encryption usually reside in the implementation, not the algorithm itself.

    That being said, I am also not aware of issues with the Linux implementation thereof.

  7. 24th August 2017,06:15 PM #7

    Join Date
    Jun 2005
    Location
    Montreal, Québec, Canada
    Posts
    8,830
    Mentioned
    22 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Stronger Than AES256 Encryption? (20) Originally Posted by flyingfsck

    AFAIK, AES256 is secure.

    Problems with encryption usually reside in the implementation, not the algorithm itself.

    That being said, I am also not aware of issues with the Linux implementation thereof.

    Yes, AES is secure, no doubting that. And there is no issues with using AES anywhere. I believe it was chosen because it was "secure enough", and because some of the AES code can be implemented in more recent Intel/AMD chip firmware.

    Still, Twofish can produce a stronger encryption (meaning it's more difficult to determine the encryption key).

    AES with CBC would take the American NSA or British MI5 security agency multiple heavy parallel computing in order to solve for the key. You or I with our fastest home computers would take us years. And by the time we solve it, someone would have changed keys for the subsequent message.

    Leslie in Montreal

    Interesting web sites list
    http://forums.fedoraforum.org/showth...40#post1697840

  8. 24th August 2017,06:25 PM #8

    Join Date
    Aug 2010
    Location
    Al Ain, UAE
    Posts
    2,028
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    BTW, AES256 is used by military up to the level of Secret. The only difference with regular Linux AES256, is that the military version was audited. If you want to test it yourself, you can get the AES test vectors from the NIST web site.

    If you are really paranoid, then you can encrypt something and then test it for compressibility with zip and if it doesn't compress, do a chi square test for randomness.

    This is how the problem with cryptoloop implementation was found. Somebody did a compression test and then raised the alarm.

  9. 24th August 2017,08:54 PM #9

    Join Date
    Nov 2008
    Posts
    415
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    It seems odd that the gpg default cipher algorithm (for symmetric keys and for protecting secret keys) is AES [128], if AES256 is superior.
  10. 25th August 2017,01:03 AM #10

    Join Date
    Jun 2005
    Location
    Montreal, Québec, Canada
    Posts
    8,830
    Mentioned
    22 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    University of Maryland has a great encryption course, offered by a Dr. Katz
    I followed it. I recommend it.

    Leslie in Montreal

    Interesting web sites list
    http://forums.fedoraforum.org/showth...40#post1697840

  11. 3rd September 2017,03:23 PM #11

    Join Date
    Jul 2017
    Location
    Israel
    Posts
    22
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Great comments everyone. I hope to be able to take an encryption course, in the near future.

    I discovered that 256 bit encrption was the US limit years ago, when I applied for an export license. I had to read about 40 pages of stuff that couldn't be exported from the US. At the time it was illegal to export or import anything stronger than 128 bit.

    A very relevant BTW. "D-WAVE SYSTEMS" of Canada has been shipping 512qbit quantum computers since 2011 and is now shipping 2048qbit quantum computers. The age of quantum craking is upon us "now," so I've been thinking that an upgrade to at least NTRU or something similar that can withstand some quantum attacks is reasonable. Especially in the crypto-currency sector.

    https://www.dwavesys.com/

    https://www.youtube.com/watch?v=60OkanvToFI

    Quantum computing is not tomorrow's news, it's yesterday's. It's probably time to address this.

  12. 22nd May 2018,04:53 PM #12

    Join Date
    Mar 2017
    Location
    A Galaxy Far Far Away...
    Posts
    35
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Stronger Than AES256 Encryption? (32) Originally Posted by dswaner

    gpg secret keys are routinely 1024 or 2048 bits.

    You are comparing Apples to Oranges. AES to RSA, and those RSA keys you are referring to, are actually weaker than 256 bit AES encryption. I used to know how to convert them down, but I forget, maybe someone else can chime in.
  13. 22nd May 2018,05:02 PM #13

    Join Date
    Mar 2017
    Location
    A Galaxy Far Far Away...
    Posts
    35
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    At the current moment, you don't need anything stronger than 128 bit AES encryption, certainly not stronger than 256 bit AES. It should be more than adequate.
  14. 22nd May 2018,07:40 PM #14

    Join Date
    Nov 2008
    Posts
    415
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Stronger Than AES256 Encryption? (37) Originally Posted by jjstorm

    You are comparing Apples to Oranges. AES to RSA, and those RSA keys you are referring to, are actually weaker than 256 bit AES encryption....

    You are correct - my understanding then was too simplistic. The length of the key and the number of bits in the security strength of the algorithm are measuring two different things.
  15. 23rd May 2018,01:44 PM #15

    Join Date
    Nov 2008
    Posts
    415
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Stronger Than AES256 Encryption?

    Stronger Than AES256 Encryption? (40) Originally Posted by dswaner

    It seems odd that the gpg default cipher algorithm (for symmetric keys and for protecting secret keys) is AES [128], if AES256 is superior.

    The explanation is likely that 128 is still adequate, and that changing long standing default behavior may break lots of scripts.

Quick NavigationSecurity and PrivacyTop

Similar Threads

  1. Replies: 9

    Last Post: 10th January 2009, 12:54 AM

  2. Encryption on FC4

    By magicdawg29 in forum Servers & Networking

    Replies: 0

    Last Post: 2nd August 2005, 06:10 PM

  3. Cryptoloop: AES256

    By cdyson37 in forum Security and Privacy

    Replies: 1

    Last Post: 7th December 2004, 07:04 AM

Tags for this Thread

Stronger Than AES256 Encryption? (45)Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Forum Rules

User Alert System provided by Advanced User Tagging (Lite) - vBulletin Mods & Addons Copyright © 2023 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication v1.1.0 (Free) -vBulletin Mods & Addons Copyright © 2023 DragonByte Technologies Ltd.

As an expert in cryptography and computer security, it's clear that the discussion in the provided forum revolves around the strength of encryption algorithms, particularly focusing on whether there are encryption methods stronger than AES256. I'll break down the concepts discussed in the forum and provide additional insights:

  1. AES256 Encryption:

    • Advanced Encryption Standard (AES) with a key size of 256 bits (AES256) is widely considered secure for various applications, including document encryption, emails, and web-surfing.
  2. Legal Limitations on Encryption Key Lengths:

    • The forum mentions that U.S. residents are limited to 256-bit encryption by law. It's important to note that export restrictions on encryption technologies were prevalent in the past, but these limitations have evolved, and the legal landscape may have changed since the forum's date in 2017.
  3. EU Legislation and Encryption:

    • According to a forum member, there is no EU legislation requiring tech companies to disclose encryption keys to law enforcement authorities. This information emphasizes the importance of understanding regional differences in encryption-related regulations.
  4. Quantum Cryptography:

    • Quantum cryptography is highlighted as a potential advancement in encryption. The forum suggests that quantum properties of light can be used to generate random numbers, providing a form of encryption that is inherently random and resistant to predictability.
  5. GPG and Key Lengths:

    • The forum discusses the key lengths of GPG (GNU Privacy Guard), indicating that GPG secret keys are routinely 1024 or 2048 bits. There is also a distinction made between symmetric key encryption and public-private key encryption.
  6. Threefish (Twofish) Encryption:

    • A forum member suggests that Threefish (a variant of Twofish) encryption is stronger than AES and uses fewer CPU cycles. Twofish is mentioned as having been developed by Bruce Schneier.
  7. Security Strength vs. Key Length:

    • The forum delves into the difference between security strength and key length. For example, RSA with a key length of 1024 bits has a security strength of 80 bits, while 2048-bit RSA has a security strength of 112 bits.
  8. Discussion on AES256 and Twofish Security:

    • Members discuss the security of AES256, stating that it is used by the military up to the level of Secret. Twofish is mentioned as potentially providing stronger encryption, and the forum emphasizes that issues with encryption often reside in the implementation rather than the algorithm itself.
  9. Quantum Computing and NTRU:

    • The forum participant raises concerns about the advent of quantum computing and suggests considering an upgrade to encryption methods like NTRU that can withstand quantum attacks.
  10. Encryption Course Recommendation:

    • A forum member recommends a cryptography course offered by the University of Maryland, indicating its usefulness.

In conclusion, the forum provides a diverse range of perspectives on encryption, including legal aspects, quantum computing, key lengths, and the strengths of specific encryption algorithms such as AES256 and Twofish. The participants demonstrate a depth of knowledge in cryptography and engage in discussions regarding the evolving landscape of encryption technologies.

Stronger Than AES256 Encryption? (2024)

FAQs

Is there better encryption than aes256? ›

AES-128 is faster and more efficient and less likely to have a full attack developed against it (due to a stronger key schedule). AES-256 is more resistant to brute force attacks and is only weak against related key attacks (which should never happen anyway).

What is the strongest AES encryption? ›

The algorithm provides 128-bit block encryption and has been designed to supports key sizes of 128, 192 and 256 bits. AES 256-bit encryption is the strongest and most robust encryption standard that is commercially available today.

Is 2048 bits RSA is a stronger encryption than AES 256? ›

As previously mentioned, AES is much faster at encrypting and decrypting data compared to RSA. For example, AES-256 operates at least 100x faster than 2048-bit RSA on similar hardware. Some benchmarks show AES-256 outperforming RSA by up to 5000x for encrypting larger amounts of data.

How hard is it to break AES256? ›

AES-256 encryption is virtually uncrackable using any brute-force method. It would take millions of years to break it using the current computing technology and capabilities.

Is there an AES 512? ›

AES-512 will be suitable for applications with high security and throughput requirements and with less chip area constrains such as multimedia and satellite communication systems.

Can quantum computers break AES-256? ›

Grover's algorithm is a quantum algorithm for unstructured data that provides a quadratic speedup in the computation over classical computing. This can result in AES-128 being feasible to crack, but AES-256 is still considered quantum resistant—at least until 2050, (as referenced throughout ETSI GR QSC 006 V1. 1.1.)

Has AES-128 been cracked? ›

A machine that can crack a DES key in a second would take 149 trillion years to crack a 128-bit AES key. Hence, it is safe to say that AES-128 encryption is safe against brute-force attacks. AES has never been cracked yet and it would take large amounts of computational power to crack this key.

Is AES still unbreakable? ›

The difference between cracking the AES-128 algorithm and AES-256 algorithm is considered minimal. Whatever breakthrough might crack 128-bit will probably also crack 256-bit. In the end, AES has never been cracked yet and is safe against any brute force attacks contrary to belief and arguments.

Why use RSA instead of AES? ›

While AES is a symmetric algorithm designed for rapid data encryption and decryption, RSA is an asymmetric method used primarily for secure key exchange and digital signatures. In certain scenarios, one may outperform the other, making the choice between AES and RSA crucial for optimal security and efficiency.

Which is better 1024 bit or 2048 bit RSA? ›

Referencing the table linked above, a 1024-bit key has approximately 80 bits of strength, while a 2048-bit key has approximately 112 bits. Thus, it takes approximately 2112/280 = 232 times as long to factor a 2048-bit key. In other words, it takes around four billion times longer to factor a 2048-bit key.

Does BitLocker use 256-bit AES? ›

BitLocker uses Advanced Encryption Standard (AES) as its encryption algorithm with configurable key lengths of 128 bits or 256 bits. The default encryption setting is AES-128, but the options are configurable by using Group Policy.

Is AES256 military grade? ›

Military grade encryption often refers to a specific encryption type, AES-256 (Advanced Encryption Standard). Currently, the U.S. government has named this algorithm the standard for encryption and most cybersecurity organizations today use this form of military grade encryption.

Can NSA break AES-256? ›

The bottom line is: NSA is engaged in “harvest now, decrypt later” surveillance of encrypted data; they are not anywhere near the ability to break AES-256, but was (in 2012) “on the verge” of being able to break a more vulnerable encryption algorithm (RSA?).

Can AES-256 be reversed? ›

Reversibility: AES: AES is reversible with the correct key. You can decrypt ciphertext to obtain the original plaintext. SHA-256: SHA-256 is not reversible.

Is AES 128 or 256 more secure? ›

Out of 128-bit, 192-bit, and 256-bit AES encryption, which progressively use more rounds of encryption for improved security, 128-bit AES encryption is technically the least secure. The standard baseline for most industrial solutions is now AES-256 by default, so encourage your users or clients to upgrade to AES-256.

Has AES 128 ever been cracked? ›

Hence, it is safe to say that AES-128 encryption is safe against brute-force attacks. AES has never been cracked yet and it would take large amounts of computational power to crack this key. Governmental organizations and businesses trust the AES for securing sensitive information.

Which is better AES or SHA256? ›

AES is used for encryption and decryption to protect data confidentiality, while SHA-256 is used for hashing to ensure data integrity and authenticity. Both play essential roles in modern cryptography and security protocols.

Top Articles
How to Save Money and Reach Your Savings Goals - Girl Seeking Purpose
How To Start Creating Wealth Now
Is Paige Vanzant Related To Ronnie Van Zant
Edina Omni Portal
Urist Mcenforcer
Obor Guide Osrs
Kobold Beast Tribe Guide and Rewards
Sarah F. Tebbens | people.wright.edu
Erskine Plus Portal
Merlot Aero Crew Portal
Lost Pizza Nutrition
Natureza e Qualidade de Produtos - Gestão da Qualidade
New Mexico Craigslist Cars And Trucks - By Owner
FAQ: Pressure-Treated Wood
Oro probablemente a duna Playa e nomber Oranjestad un 200 aña pasa, pero Playa su historia ta bay hopi mas aña atras
Learn2Serve Tabc Answers
Kvta Ventura News
25Cc To Tbsp
Icommerce Agent
iZurvive DayZ & ARMA Map
Race Karts For Sale Near Me
Gayla Glenn Harris County Texas Update
Touchless Car Wash Schaumburg
Wemod Vampire Survivors
The Tower and Major Arcana Tarot Combinations: What They Mean - Eclectic Witchcraft
Betaalbaar naar The Big Apple: 9 x tips voor New York City
Mdt Bus Tracker 27
Pioneer Library Overdrive
Paris Immobilier - craigslist
The Procurement Acronyms And Abbreviations That You Need To Know Short Forms Used In Procurement
3 Ways to Format a Computer - wikiHow
Devotion Showtimes Near The Grand 16 - Pier Park
Hair Love Salon Bradley Beach
Metro By T Mobile Sign In
Domino's Delivery Pizza
#1 | Rottweiler Puppies For Sale In New York | Uptown
Die Filmstarts-Kritik zu The Boogeyman
Rage Of Harrogath Bugged
Craigslist Pa Altoona
Brake Pads - The Best Front and Rear Brake Pads for Cars, Trucks & SUVs | AutoZone
Rocket Lab hiring Integration & Test Engineer I/II in Long Beach, CA | LinkedIn
Dontrell Nelson - 2016 - Football - University of Memphis Athletics
Scott Surratt Salary
How to Do a Photoshoot in BitLife - Playbite
F9 2385
99 Fishing Guide
Divisadero Florist
The Missile Is Eepy Origin
How To Find Reliable Health Information Online
Gameplay Clarkston
Room For Easels And Canvas Crossword Clue
Latest Posts
Article information

Author: Tyson Zemlak

Last Updated:

Views: 5579

Rating: 4.2 / 5 (63 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Tyson Zemlak

Birthday: 1992-03-17

Address: Apt. 662 96191 Quigley Dam, Kubview, MA 42013

Phone: +441678032891

Job: Community-Services Orchestrator

Hobby: Coffee roasting, Calligraphy, Metalworking, Fashion, Vehicle restoration, Shopping, Photography

Introduction: My name is Tyson Zemlak, I am a excited, light, sparkling, super, open, fair, magnificent person who loves writing and wants to share my knowledge and understanding with you.