<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Performance Tuning Tip - VPN Speed Test in General Topics</title>
    <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261765#M44281</link>
    <description>&lt;P data-start="0" data-end="32"&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/27871"&gt;@Bob_Zimmerman&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best comment in the community&amp;nbsp;2025&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P data-start="34" data-end="143" data-is-last-node="" data-is-only-node=""&gt;I’m going to print out this comment, hang it on my wall, and quote you in every one of my meetings about AES.&lt;BR /&gt;&lt;BR /&gt;PS:&lt;BR /&gt;If we cover the earth with so many solar cells, it will look a bit like the Death Star from Star Wars when viewed from space.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DS_53534534.png" style="width: 376px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/31983i610C01D11E16452F/image-dimensions/376x374?v=v2" width="376" height="374" role="button" title="DS_53534534.png" alt="DS_53534534.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Nov 2025 14:08:39 GMT</pubDate>
    <dc:creator>HeikoAnkenbrand</dc:creator>
    <dc:date>2025-11-04T14:08:39Z</dc:date>
    <item>
      <title>Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261646#M44264</link>
      <description>&lt;P&gt;Different methods of block encryption are used for VPN connections. In most cases, users tend to select the highest encryption algorithm available. The question, however, is what impact this choice has on performance.&lt;/P&gt;
&lt;P&gt;To test the performance of DES, AES, and CAST, I created a small one-liner that shows which encryption algorithm achieves the highest performance on your appliances or open servers.&amp;nbsp;Please note that the test runs on only one CPU core. Since VPN is multi-core capable, you can achieve significantly higher VPN encryption rates. Under normal circumstances, you should always achieve the best encryption throughput with AES, as modern CPUs include hardware acceleration for AES. You can find more information in the following article (&lt;A href="https://community.checkpoint.com/docs/DOC-3278-r80x-performance-tuning-tip-aes-ni" target="_blank" rel="noopener"&gt;Performance Tuning Tip - AES-NI&lt;/A&gt;).&lt;BR /&gt;&lt;BR /&gt;Run this one-liner preferably on the standby gateway in a cluster, as it can temporarily generate 100% CPU load. This is necessary to avoid disrupting the production environment.&lt;/P&gt;
&lt;P&gt;The one-liner shows how many kilobytes each encryption algorithm can process within three seconds and sorts the results by speed.&amp;nbsp;Adjust your VPN settings to use the fastest algorithm if necessary. However, be aware that this may reduce the overall level of security.&lt;BR /&gt;&lt;BR /&gt;Copy the one-liner via copy and paste into the bash shell of your gateway. Please note that execution may take between 2 and 5 minutes, depending on the CPU speed:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;cpopenssl speed aes-128-cbc aes-256-cbc des-ede3 des-cbc cast-cbc 2&amp;gt;/dev/null | grep "aes\|cast\|des" | awk '{print $1, $2, $(NF-1)}' | sort -k3 -n -r | grep -v opt | sed -E 's/aes-128 cbc/AES-128/g; s/aes-256 cbc/AES-256/g ; s/des cbc/DES    /g; s/des ede3/3DES   /g ; s/cast cbc/CAST   /g'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;This is what an example output might look like on your system:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fast_43534534.png" style="width: 188px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/31970i1171550CE9701841/image-size/large?v=v2&amp;amp;px=999" role="button" title="Fast_43534534.png" alt="Fast_43534534.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;In this case, AES-128 would be the fastest encryption algorithm on the gateway.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;PS:&lt;BR /&gt;In my tests on various Check Point appliances, "AES-128" was always the fastest algorithm. However, from a security perspective, I would recommend using AES-256 or higher.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Version:&lt;/P&gt;
&lt;P&gt;01-28-2026&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; R82+R82.10 upgrade &lt;BR /&gt;05-04-2025&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; created&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 11:37:05 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261646#M44264</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2026-01-29T11:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261681#M44268</link>
      <description>&lt;P&gt;Many thanks for the years of excellent cooperation and for the always insightful articles on CheckMates.&lt;BR /&gt;&lt;BR /&gt;I do have one small question, though: there are several additional encryption algorithms that can be used in Phase 1 and Phase 2.&lt;BR /&gt;Is it possible to integrate those as well?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 13:51:31 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261681#M44268</guid>
      <dc:creator>Hauke</dc:creator>
      <dc:date>2025-11-03T13:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261688#M44269</link>
      <description>&lt;P&gt;Excellent!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 14:23:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261688#M44269</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-11-03T14:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261696#M44270</link>
      <description>&lt;P&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/21670"&gt;@HeikoAnkenbrand&lt;/a&gt;&amp;nbsp;Would it be possible to add the AES-GCM-128 and AES-GCM-256 variants to the tool and update the sample screenshot accordingly?&amp;nbsp; In theory, the Galois Counter Mode variants should be faster than their non-GCM counterparts on processor hardware that supports the AES-NI extension.&amp;nbsp; For those systems without AES-NI support (such as Quantum Spark), the non-GCM versions should be used for best performance.&amp;nbsp; Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 17:27:46 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261696#M44270</guid>
      <dc:creator>Timothy_Hall</dc:creator>
      <dc:date>2025-11-03T17:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261704#M44271</link>
      <description>&lt;P&gt;It takes an ideal computer around a nanojoule to set the state of 128 bits. To simply count through all the possible 128-bit keys without trying to do anything with them would take around 0.0028% of the total energy the sun emits in a year. The Earth gets about 0.000000066% of the energy the sun emits, so if we covered the whole planet with 50% efficient solar cells (better than the best research cells today), it would take a little over 85 thousand years to get the energy to count through all possible 128-bit keys without doing anything with them.&lt;/P&gt;
&lt;P&gt;On top of this, perfect forward secrecy means spending all that time and effort would get the attacker one phase 2 interval of traffic (one hour by default). Then they would have to do it all over again for the next chunk of traffic.&lt;/P&gt;
&lt;P&gt;AES (really, symmetric encryption in general) doesn't rely on problems which quantum computers solve. The best mode of attack is on the key negotiation (and quantum computers do help with that on older asymmetric negotiation systems) or side-channels, but most of those require extreme levels of hostile access to the system being attacked.&lt;/P&gt;
&lt;P&gt;AES-128 is more than safe enough for the lifetime of anybody currently alive.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 16:12:22 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261704#M44271</guid>
      <dc:creator>Bob_Zimmerman</dc:creator>
      <dc:date>2025-11-03T16:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261763#M44280</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/597"&gt;@Timothy_Hall&lt;/a&gt;&amp;nbsp;, I had the same idea. Unfortunately, the ciphers AES-128-GCM and AES-256-GCM are not supported in the OpenSSL version used by Check Point.&lt;BR /&gt;&lt;BR /&gt;R81.20:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AES-GCM_4234234.png" style="width: 400px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/31982i4AE80496CE339570/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AES-GCM_4234234.png" alt="AES-GCM_4234234.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I’ll check that in the lab this evening under R82 or R82.10.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 13:54:18 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261763#M44280</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2025-11-04T13:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261765#M44281</link>
      <description>&lt;P data-start="0" data-end="32"&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/27871"&gt;@Bob_Zimmerman&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best comment in the community&amp;nbsp;2025&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P data-start="34" data-end="143" data-is-last-node="" data-is-only-node=""&gt;I’m going to print out this comment, hang it on my wall, and quote you in every one of my meetings about AES.&lt;BR /&gt;&lt;BR /&gt;PS:&lt;BR /&gt;If we cover the earth with so many solar cells, it will look a bit like the Death Star from Star Wars when viewed from space.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DS_53534534.png" style="width: 376px;"&gt;&lt;img src="https://community.checkpoint.com/t5/image/serverpage/image-id/31983i610C01D11E16452F/image-dimensions/376x374?v=v2" width="376" height="374" role="button" title="DS_53534534.png" alt="DS_53534534.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 14:08:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261765#M44281</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2025-11-04T14:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261766#M44282</link>
      <description>&lt;P&gt;Its genius, for sure! AI seems to agree &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P data-start="0" data-end="247"&gt;Short answer: there are &lt;SPAN class="katex"&gt;&lt;SPAN class="katex-mathml"&gt;2128≈3.402823669×10382^{128}\approx 3.402823669\times 10^{38}&lt;/SPAN&gt;&lt;SPAN class="katex-html" aria-hidden="true"&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;2&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;128&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="mrel"&gt;≈&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;3.402823669&lt;/SPAN&gt;&lt;SPAN class="mbin"&gt;×&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;0&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;38&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; possible keys. Brute-forcing that whole space is effectively impossible with any realistic hardware — even astronomical resources. Below are concrete examples so you can see why.&lt;/P&gt;
&lt;HR data-start="249" data-end="252" /&gt;
&lt;H2 data-start="254" data-end="268"&gt;Key numbers&lt;/H2&gt;
&lt;UL data-start="269" data-end="468"&gt;
&lt;LI data-start="269" data-end="377"&gt;
&lt;P data-start="271" data-end="377"&gt;Total keys: &lt;SPAN class="katex"&gt;&lt;SPAN class="katex-mathml"&gt;2128=340,282,366,920,938,463,463,374,607,431,768,211,4562^{128} = 340,282,366,920,938,463,463,374,607,431,768,211,456&lt;/SPAN&gt;&lt;SPAN class="katex-html" aria-hidden="true"&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;2&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;128&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="mrel"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;340&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;282&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;366&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;920&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;938&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;463&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;463&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;374&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;607&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;431&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;768&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;211&lt;/SPAN&gt;&lt;SPAN class="mpunct"&gt;,&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;456&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; (≈ &lt;SPAN class="katex"&gt;&lt;SPAN class="katex-mathml"&gt;3.4028×10383.4028\times10^{38}&lt;/SPAN&gt;&lt;SPAN class="katex-html" aria-hidden="true"&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;3.4028&lt;/SPAN&gt;&lt;SPAN class="mbin"&gt;×&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;0&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;38&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;).&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="378" data-end="468"&gt;
&lt;P data-start="380" data-end="468"&gt;Average work to find a random key (expected): half that, ≈ &lt;SPAN class="katex"&gt;&lt;SPAN class="katex-mathml"&gt;1.7014×10381.7014\times10^{38}&lt;/SPAN&gt;&lt;SPAN class="katex-html" aria-hidden="true"&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1.7014&lt;/SPAN&gt;&lt;SPAN class="mbin"&gt;×&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;0&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;38&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; keys.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H2 data-start="470" data-end="541"&gt;How long to try the whole space (and average time = half of these)&lt;/H2&gt;
&lt;P data-start="542" data-end="654"&gt;Times shown are &lt;STRONG data-start="558" data-end="567"&gt;years&lt;/STRONG&gt; to exhaust the entire keyspace (divide by 2 for the average time to hit a random key).&lt;/P&gt;
&lt;UL data-start="656" data-end="1165"&gt;
&lt;LI data-start="656" data-end="727"&gt;
&lt;P data-start="658" data-end="727"&gt;1 key / second → &lt;STRONG data-start="675" data-end="694"&gt;1.08×10³¹ years&lt;/STRONG&gt; (≈ &lt;SPAN class="katex"&gt;&lt;SPAN class="katex-mathml"&gt;1.08⋅10311.08\cdot10^{31}&lt;/SPAN&gt;&lt;SPAN class="katex-html" aria-hidden="true"&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1.08&lt;/SPAN&gt;&lt;SPAN class="mbin"&gt;⋅&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;0&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;31&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; years)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="728" data-end="768"&gt;
&lt;P data-start="730" data-end="768"&gt;1,000 keys / s → &lt;STRONG data-start="747" data-end="766"&gt;1.08×10²8 years&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="769" data-end="813"&gt;
&lt;P data-start="771" data-end="813"&gt;1,000,000 keys / s → &lt;STRONG data-start="792" data-end="811"&gt;1.08×10²5 years&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="814" data-end="865"&gt;
&lt;P data-start="816" data-end="865"&gt;1 billion (10^9) keys / s → &lt;STRONG data-start="844" data-end="863"&gt;1.08×10²2 years&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="866" data-end="919"&gt;
&lt;P data-start="868" data-end="919"&gt;1 trillion (10^12) keys / s → &lt;STRONG data-start="898" data-end="917"&gt;1.08×10¹9 years&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="920" data-end="976"&gt;
&lt;P data-start="922" data-end="976"&gt;1 quadrillion (10^15) keys / s → &lt;STRONG data-start="955" data-end="974"&gt;1.08×10¹6 years&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="977" data-end="1053"&gt;
&lt;P data-start="979" data-end="1053"&gt;1 exa (10^18) keys / s → &lt;STRONG data-start="1004" data-end="1023"&gt;1.08×10¹3 years&lt;/STRONG&gt; (≈ &lt;STRONG data-start="1027" data-end="1050"&gt;10.8 trillion years&lt;/STRONG&gt;)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1054" data-end="1130"&gt;
&lt;P data-start="1056" data-end="1130"&gt;1 yotta (10^24) keys / s → &lt;STRONG data-start="1083" data-end="1101"&gt;1.08×10⁷ years&lt;/STRONG&gt; (≈ &lt;STRONG data-start="1105" data-end="1127"&gt;10.8 million years&lt;/STRONG&gt;)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1131" data-end="1165"&gt;
&lt;P data-start="1133" data-end="1165"&gt;10^30 keys / s → &lt;STRONG data-start="1150" data-end="1165"&gt;~10.8 years&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="1167" data-end="1353"&gt;So to finish the whole 128-bit keyspace in a &lt;EM data-start="1212" data-end="1220"&gt;decade&lt;/EM&gt; you'd need on the order of &lt;SPAN class="katex"&gt;&lt;SPAN class="katex-mathml"&gt;103010^{30}&lt;/SPAN&gt;&lt;SPAN class="katex-html" aria-hidden="true"&gt;&lt;SPAN class="base"&gt;&lt;SPAN class="mord"&gt;1&lt;/SPAN&gt;&lt;SPAN class="mord"&gt;0&lt;SPAN class="msupsub"&gt;&lt;SPAN class="vlist-t"&gt;&lt;SPAN class="vlist-r"&gt;&lt;SPAN class="vlist"&gt;&lt;SPAN&gt;&lt;SPAN class="sizing reset-size6 size3 mtight"&gt;&lt;SPAN class="mord mtight"&gt;30&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; keys per second — an utterly unrealistic rate with any physically plausible technology today.&lt;/P&gt;
&lt;P data-start="1355" data-end="1446"&gt;For perspective: the age of the universe is ≈ &lt;STRONG data-start="1401" data-end="1420"&gt;1.38×10¹⁰ years&lt;/STRONG&gt; (≈ 13.8 billion years).&lt;/P&gt;
&lt;UL data-start="1447" data-end="1682"&gt;
&lt;LI data-start="1447" data-end="1573"&gt;
&lt;P data-start="1449" data-end="1573"&gt;At 10^18 keys/s (extremely fast), cracking the &lt;EM data-start="1496" data-end="1504"&gt;entire&lt;/EM&gt; 128-bit space would still take ~&lt;STRONG data-start="1537" data-end="1546"&gt;782 ×&lt;/STRONG&gt; the age of the universe.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="1574" data-end="1682"&gt;
&lt;P data-start="1576" data-end="1682"&gt;At 10^24 keys/s it would take ~&lt;STRONG data-start="1607" data-end="1629"&gt;10.8 million years&lt;/STRONG&gt; (still far longer than any practical attack window).&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 04 Nov 2025 14:14:02 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261766#M44282</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2025-11-04T14:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261771#M44284</link>
      <description>&lt;P&gt;R82 uses the same version, as I recall.&lt;BR /&gt;R82.10 uses a newer version.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 14:45:28 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/261771#M44284</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2025-11-04T14:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning Tip - VPN Speed Test</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/262069#M44319</link>
      <description>&lt;P&gt;Let me get back to the technical part &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; &lt;BR /&gt;&lt;BR /&gt;If your firewall is reaching its performance limits due to heavy VPN traffic, it can be beneficial to switch the encryption from AES-256 to AES-128, for example. In my performance tests, this reduced CPU load by about 10–15%.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 20:51:33 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Performance-Tuning-Tip-VPN-Speed-Test/m-p/262069#M44319</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2025-11-06T20:51:33Z</dc:date>
    </item>
  </channel>
</rss>

