Skip to content

7.2.0 release documentation#1014

Open
Chr1st0ph3rTurn3r wants to merge 36 commits into
masterfrom
7.2.0-release-documentation
Open

7.2.0 release documentation#1014
Chr1st0ph3rTurn3r wants to merge 36 commits into
masterfrom
7.2.0-release-documentation

Conversation

@Chr1st0ph3rTurn3r
Copy link
Copy Markdown
Contributor

No description provided.

aayan-AIDE
aayan-AIDE previously approved these changes May 12, 2026
Comment thread docs/config_pmtu.mdx Outdated
SSR 7.2.0 introduces two complementary enhancements to address these gaps:

1. **Underlay ICMP reaction** — When the SSR receives a TooBig packet from the underlay, it updates the affected overlay flow and generates a corrected TooBig packet toward the original packet sender, allowing the sender to adjust its segment size.
2. **PMTUD-triggered session refresh** — When a periodic PMTUD cycle discovers a new path MTU, existing sessions that are eligible for flow-move are refreshed to use the new value on the next packet.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not being delivered in 7.2.0

Comment thread docs/config_pmtu.md
Note over R2,R1: Underlay MTU between Hub and R2 drops to 1300
Hub->>R2: SVR packet hub-WAN to spoke-WAN (over 1300 bytes)
R2-->>Hub: ICMP TooBig type 3 code 4, reported MTU = 1300
Note over Hub: DivertedPacketHandler finds reverse flow. Updates Hub-to-Spoke PMTU to 1300.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should emphasis that this only affects this particular flow. A different session using this same path does not realize the PMTU reported to this session. It also does not persist, meaning if the session is modified for some other reason (FIB update, device flap, etc), the egress MTU is 'reset' back to the latest at that time based on the most recent BFD-based PMTU detection test, or interface MTU if no such test has been done

Comment thread docs/config_pmtu.mdx Outdated
Note over Server: Server adjusts MSS if TCP-capable
```

When R2 (an underlay device) cannot forward an oversized packet, it sends a TooBig packet to the Hub's WAN interface. The SSR's `DivertedPacketHandler` processes this message:
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we call out DivertedPacketHandler in these docs? It feels like it crosses into implementation details. I guess it depends on how we callout individual processes elsewhere in documentation

Comment thread docs/config_pmtu.md
When R2 (an underlay device) cannot forward an oversized packet, it sends a TooBig packet to the Hub's WAN interface. The SSR's `DivertedPacketHandler` processes this message:

1. It extracts the encapsulated IP header from the TooBig body to identify the affected overlay session.
2. It finds the reverse flow using that header and updates the Hub → Spoke forward flow's PMTU to the value reported by the underlay.
Copy link
Copy Markdown

@tjbresnahan tjbresnahan May 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pedantic, but it doesnt have to be a reverse flow. It's whatever flow was traversed to elicit the TooBig response. In the context of a TCP download used throughout this doc, it would likely be a reverse flow

Comment thread docs/config_pmtu.mdx Outdated
3. It constructs a new TooBig packet directed toward the original packet sender (the Server), so the server's TCP stack can reduce its MSS.

:::note
The MTU value propagated in the new TooBig packet reflects the underlay-reported value. On paths with encryption, HMAC, FEC, or BFD tunneling overhead, the effective usable MTU will be lower than the raw underlay value. The SSR accounts for these overheads when setting the MSS on forward flow actions.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MTU, not MSS

... when setting the egress MTU on forward flow actions.

Comment thread docs/config_pmtu.md

## Fabric Fragmentation and Oversize Packet Behavior

When the PMTU on an overlay (SVR/fabric) path is lower than the MTU of the segment immediately preceding the Hub, packets larger than the PMTU will require fragmentation along the overlay. The SSR always fragments fabric packets when necessary, even when the incoming packet carries the Don't Fragment (DF) bit. This preserves packet delivery but prevents the sender from learning about the smaller path MTU and adjusting its segment size.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IPv6 traffic also is supposed to never fragment at a router, but like the IPv4 with dont-frag, we do anyways when its an SVR path

Comment thread docs/config_pmtu.mdx Outdated
When the PMTU on an overlay (SVR/fabric) path is lower than the MTU of the segment immediately preceding the Hub, packets larger than the PMTU will require fragmentation along the overlay. The SSR always fragments fabric packets when necessary, even when the incoming packet carries the Don't Fragment (DF) bit. This preserves packet delivery but prevents the sender from learning about the smaller path MTU and adjusting its segment size.

:::note
For TCP traffic, setting `enforced-mss automatic` on the egress `network-interface` is the most reliable way to avoid this scenario. When set, the SSR rewrites the TCP MSS at the interface boundary to match the session MTU (including the path MTU for SVR sessions). This is not the default and must be explicitly configured.
Copy link
Copy Markdown

@tjbresnahan tjbresnahan May 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This process is more widely known as MSS Clamping. We should sprinkle that in here. Also, the SSR will further reduce the MSS based on any overhead needed by the SSR, as mentioned earlier in the doc (thats the actual clamping)

Comment thread docs/config_pmtu.mdx Outdated
For TCP traffic, setting `enforced-mss automatic` on the egress `network-interface` is the most reliable way to avoid this scenario. When set, the SSR rewrites the TCP MSS at the interface boundary to match the session MTU (including the path MTU for SVR sessions). This is not the default and must be explicitly configured.
:::

### Oversize Fabric Packet Behavior
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

None of this section has been implemented for 7.2.0

Comment thread docs/config_pmtu.mdx Outdated
Packets that do not carry the DF bit fragment immediately regardless of this setting. Only packets that would otherwise be fragmented on an SVR path are subject to this behavior.
:::

#### Configuration Location
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same, this config knob doesnt exist

Comment thread docs/config_pmtu.mdx Outdated
exit
```

### Enabling Session Refresh on PMTU Change
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This functionality is not in 7.2.0

Comment thread docs/config_pmtu.md

## Verification

Use `show peers` to confirm the currently discovered path MTU for each peer path:
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nothing to correct here, just clarifying that this IS correct today. The show peers command investigates the peer path, which will show the PMTU at that moment in time. It's the session level part that only updates when a TooBig packet comes in, and only for that single session.

I dont think there's visibility into that from a show command perspective.

A new stat, stats/icmp/flow-mtu-updates, is a count of flows that have had their MTU updated at runtime via a TooBig packet. This counter is reset when the system resets (not persisted)

Comment thread docs/config_pmtu.mdx Outdated

- If the path MTU shown by `show peers` does not reflect the expected value, verify that `path-mtu-discovery > enabled` is `true` on both sides of the adjacency.
- If TCP sessions continue to fragment after configuring `enforced-mss automatic`, confirm the setting is applied to the correct egress interface and that both peers have completed a PMTUD cycle.
- If existing sessions are not picking up a new PMTU after a PMTUD cycle, verify the `service-policy` for those sessions has `session-resiliency` set to `failover` or `revertible-failover`.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not a useful check today

Comment thread docs/config_pmtu.mdx Outdated
SSR 7.2.0 introduces two complementary enhancements to address these gaps:

1. **Underlay ICMP reaction** — When the SSR receives a TooBig packet from the underlay, it updates the affected overlay flow and generates a corrected TooBig packet toward the original packet sender, allowing the sender to adjust its segment size.
2. **PMTUD-triggered session refresh** — When a periodic PMTUD cycle discovers a new path MTU, existing sessions that are eligible for flow-move are refreshed to use the new value on the next packet.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The two deliveries related to MTU are

  1. The MTU in the TooBig packet is corrected by reducing the amount of overhead needed by the SSR
  2. The flow which was traversed to trigger the TooBig response from the underlay is now updated to use the MTU reported in the TooBig packet

…hether changes are needed, and need to get stats example.
Comment thread docs/sec_security_policy.md Outdated

### Configuring AES-GCM

AES-GCM is selected by setting the `encryption-cipher` field of a security policy to the appropriate AES-GCM value. The security policy is then applied in the same locations as any other cipher:
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a mention that new selectable values are aes-gcm-128 and aes-gcm-256

Comment thread docs/sec_security_policy.md Outdated

### Verifying AES-GCM Is In Use

After applying the new policy, use `show sessions by-id` to confirm the cipher is active on new sessions. The **Payload Security Policy** and **Metadata Security Policy** fields identify which security policy is applied per flow. Confirm that the policy you configured with AES-GCM is listed for the expected flows.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Action List fields will also include GCM encryption/decryption actions: AesGcmEncrypt, AesGcmDecrypt, AesGcmEncryptSvr2, AesGcmDecryptSvr2

Copy link
Copy Markdown

@dmontgomeryJuniper dmontgomeryJuniper left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Couple of suggestions

Comment thread docusaurus.config.js
onBrokenMarkdownLinks: 'throw',
markdown: {
mermaid: true,
hooks: {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why this change was made.

https://docusaurus.io/docs/api/docusaurus-config#onBrokenMarkdownLinks

Was existed previously is the new way to handle markdown reference handling

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure what that is. I asked CoPilot to try to resolve the mermaid issue, maybe that change was part of it?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most likely. Please revert this change and let me know the mermaid error. I'll help you fix.

Comment thread docs/config_bgp.md

```text
admin@router1.site1# show bgp neighbors 172.16.3.3 filtered-routes
```
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please provide at least a CLI output for IPv4

Comment thread docs/config_pmtu.mdx Outdated
@@ -0,0 +1,209 @@
---
title: Path MTU Discovery Enhancements
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since there does not exist a document for Path MTU for the SSR, I would suggest calling this document Path MTU Discover, and leave off the Enhancements. We should use this document to describe overall PMTU behavior, including the enhancements.

The only area in our docs that covers PMTU is concepts_machine_communication.

I would leave that content there, but provide a link to this new document. It might be worthwhile to duplicate some or all of the other content here.

Comment thread docs/config_pmtu.mdx Outdated

| Release | Modification |
| ------- | ------------ |
| 7.2.0 | Feature introduced |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Untrue. PMTU has been around for a long time. Perhaps from the beginning? Might be better off removing this version history table.

Comment thread docs/config_pmtu.mdx Outdated
node <node-name>
device-interface <device-interface-name>
network-interface <network-interface-name>
oversize-fabric-packet-behavior true
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is oversize-fabric-packet-behavior true a new configuration attribute? What is the default?

| Integrity | Authenticated; authentication failure causes immediate packet discard. |
| HMAC settings | Ignored when AES-GCM is selected — authentication is inherent to GCM. |
| Peer compatibility | If the remote peer does not support AES-GCM, the session falls back to the mutually supported cipher according to existing SSR negotiation behavior. |
| Mixed-version fabrics | Supported, provided peers negotiate a mutually supported cipher. |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above...

| HMAC settings | Ignored when AES-GCM is selected — authentication is inherent to GCM. |
| Peer compatibility | If the remote peer does not support AES-GCM, the session falls back to the mutually supported cipher according to existing SSR negotiation behavior. |
| Mixed-version fabrics | Supported, provided peers negotiate a mutually supported cipher. |
| Platform requirement | Requires OpenSSL with GCM capability; supported on existing SSR hardware platforms. |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would remove this line. Of course the SSR is interoperating with other SSRs. Peers need to be on 7.2+

:::

:::caution
Changing an encryption cipher is a service-impacting event. Existing sessions cannot be re-keyed in-place. Follow the guidance in [Changing A Security Policy](#changing-a-security-policy) and perform the change during a maintenance window.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does happen when a security policy is changed on a running system? Will new session use the new security-policy setting while existing sessions will remain on the old configuration? Or do all sessions get updated (i.e., pre-existing sessions will be destroyed and recreated as new sessions)?


### Verifying AES-GCM Is In Use

After applying the new policy, use `show sessions by-id` to confirm the cipher is active on new sessions. The **Payload Security Policy** and **Metadata Security Policy** fields identify which security policy is applied per flow. The **Action List** fields include the GCM encryption and `decryption actions: `AesGcmEncrypt`, `AesGcmDecrypt`, `AesGcmEncryptSvr2`, and `AesGcmDecryptSvr2. Confirm that the policy you configured with AES-GCM is listed for the expected flows.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is AesGcmDecryptSvr2? I see AesGcmEncryptMetadata in the output below. I'd like to think we didn't put "Svrv2" in CLI output.

Bytes Sent: 151464
Tcp Retransmission Count: N/A
Decrypt Security Policy: <empty>
Action List: Ingress TtlValidateIpv4 IpHeaderTransform AesGcmEncrypt AppMetadataAdd AesGcmEncryptMetadata EthernetHeaderTransform AppForward
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dmontgomeryJuniper as per this doc set, is there detailed session output that displays per-session MTU values?

…ranch 'madams/7.2.0-san-uri-docs' into 7.2.0-release-documentation
@MichaelBaj MichaelBaj self-requested a review May 18, 2026 20:35
Comment thread docs/about_releases.md Outdated

| Version | Initial GA Version | First Release Shipping Date | Latest GA Version | Support Lifetime | End of Engineering support | End of Support |
| -- | -- | -- | -- | -- | -- | -- |
| Release 7.2 | [7.2.0](release_notes_128t_7.2.md#release-720-10r1) | June 30, 2026 | [7.2.0](release_notes_128t_7.2.md#release-720-10r1) | LTS | September 30, 2028 | March 30, 2029 |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The EoE date should be December 30, 2028. Math is FRS + 6 + 24 (for STS).
The EOS date should be June 30, 2029. Math is FRS + 6 + 24 + 6

Comment thread docs/release_notes_128t_7.2.md Outdated
:::

:::warning
An issue has been identified involving the use of the HA Sync Redundancy Plugin with SSR 7.0.0, which prevents proper functioning of the plugin. If you use the HA Plugin in your SSR deployment, it is not advised to upgrade at this time. The issue is being investigated and will be resolved in a future release.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given this was an issue with 7.0.0, and this is a 7.2.0 release, is this warning relevant?

Comment thread docs/release_notes_128t_7.2.md Outdated

- **Adaptive PMTU Change Handling for Long-Lived Sessions:** The SSR performs Path MTU Discovery (PMTUD) along the overlay to determine the correct maximum transmission unit (MTU) for each peer path. Devices in the underlay may report an ICMP Destination Unreachable / Fragmentation Needed (type 3, code 4) error to indicate they could not forward a packet due to an undersized MTU. With 7.2.0, the SSR updates the affected overlay flow and generates a corrected packet toward the original packet sender, allowing the sender to adjust its segment size. The flow which was traversed to trigger the response from the underlay is now updated to use the new updated MTU. For more information, see [Path MTU Discovery](config_pmtu.md).
------
- **I95-61066 Simplified Interface Naming:** Removed the platform restriction (SSR400/SSR440 only) that prevented the ability to configure forwarding device-interfaces via Linux `interface-name`. `interface-name` can now be used as a device identifier on all physical and virtual SSR platforms for both forwarding and non-forwarding interfaces, enabling stable, name-based NIC configuration for cloud VMs, bare-metal servers, and purpose-built hardware alike.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

extra space after the issue ID
extra space after "SSR platforms for"

This description is incorrect. It can be stated more succinctly that device-interface names can use linux-like naming schemes for all platforms, from bare metal, to virtual, to public cloud. Please check with Vikas on the specifics for how this should be worded.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wrote the description based on what Vikas had in the spec he sent me. I ran the text above by him before publishing it, and he agreed that it was accurate - the linux interface-name can now be used on both forwarding and non-forwarding interfaces, on all platforms.
I will bring your suggestions to him and see what we can craft for a better description.

Comment thread docs/release_notes_128t_7.2.md Outdated
------
- **I95-64645 Certificate Management - CSR Improvements:** Starting in SSR 7.2.0, the peering identity can be carried in a Subject Alternative Name (SAN) URI extension instead of the Common Name (CN). This is especially useful in **HA deployments**, where both nodes in a router share the same `peering-common-name` but enterprise PKI policies require unique CNs per certificate. See [Enhanced Security Key Management — API Naming Rules](sec_enhanced_key_mgmt.md#peering-identity-via-subject-alternative-name-uri) for details.
------
- **I95-64845 Add Missing Audit Events for Certificate APIs:** Addes several audit events and logs for certificate activity. See [Audit Events and Logging](sec-cert-based-encrypt.md#audit-eventslogging) for additional information.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of "Add Missing", use "Add Additional"


### New Features

- **I95-25150 AES-GCM Encryption:** Added support for AES-GCM as an encryption and authentication algorithm. AES-GCM provides improved performance over AES-CBC + HMAC-SHA by combining encryption and authentication into a single operation.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need link to detail configuration and troubleshooting document.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not in the Swift beta drop, and to be consistent with the 7.1 beta drops, only the included features are documented. In the final release notes, this will be visible with the link to the documentation.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GCM will be in the Swift beta.

Comment thread docs/release_notes_128t_7.2.md Outdated
------
- **I95-64567 SSR router status `Disconnected` on Conductor:** Resolved an issue where SSR routers may become stuck in a `Disconnected` state on the Conductor when a loopback address was configured, preventing config pushes and hiding vital data in the Conductor GUI.
------
- **I95-64569 GCP template interface ordering incorrect:** Resolved an issue where the GCP deployment template had incorrect interface ordering, causing interfaces to be assigned to the wrong roles.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this should be documented, it should be in the GCP plugin docs.
Marked as exclude from release notes.
Please remove

Comment thread docs/release_notes_128t_7.2.md Outdated
------
- **I95-64619 Config validate rejects DHCP network-interface when VRRP is present:** Resolved an issue where configuration validation incorrectly rejected a DHCP-enabled network-interface if VRRP was present in the configuration, even when VRRP was not enabled.
------
- **I95-64696 Salt connectivity issues after Conductor upgrade to 6.3.7:** Resolved an issue where salt connectivity between routers and the conductor was lost after upgrading the conductor to version 6.3.7.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This issue was already listed in 6.2.11 release notes with the following language:

  • I95-64696 Salt connectivity issues after Conductor upgrade: Resolved an issue where salt-minion lost connectivity to the salt-master after a Conductor upgrade, affecting approximately 20% of routers. The minion-connector service now correctly manages the salt master address.

Let's continue to use the same language

Comment thread docs/release_notes_128t_7.2.md Outdated
------
- **I95-64696 Salt connectivity issues after Conductor upgrade to 6.3.7:** Resolved an issue where salt connectivity between routers and the conductor was lost after upgrading the conductor to version 6.3.7.
------
- **I95-64709 BGP stale-routes-time and Selection_Deferral_Timer:** Resolved an issue with the relationship between the SSR `stale-routes-time` configuration and RFC 4724's Selection Deferral Timer, ensuring proper BGP graceful restart behavior.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BGP stale-routes-time and Selection_Deferral_Timer -> BGP GR impacted by interaction of stale-routes-time and selection deferral timer.

Comment thread docs/release_notes_128t_7.2.md Outdated
------
- **I95-65019 TLS client peer-verification skipped when no CA certificate is configured:** Resolved a critical issue where TLS client connections without a configured CA certificate silently skipped peer verification.

<!---
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are these commented out? These should be listed, but are all Mist-specific.

Comment thread docs/release_notes_128t_7.2.md Outdated
------
- **WAN-4712 Update result directory with filtered and renamed files:** Updated the configuration transformation result directory to use filtered and renamed output files for improved analysis.
------
- **WAN-4724 Persist PapiDiff results in DB for analysis:** Added persistence of PapiDiff comparison results to a database for post-transformation analysis and debugging.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • WAN-4724 Persist Configuration Diffs in database for analysis: Added persistence of configuration difs to a database for post-transformation analysis and debugging.

@MichaelBaj MichaelBaj self-requested a review May 27, 2026 17:33
MichaelBaj
MichaelBaj previously approved these changes May 28, 2026

### New Features

- **I95-25150 AES-GCM Encryption:** Added support for AES-GCM as an encryption and authentication algorithm. AES-GCM provides improved performance over AES-CBC + HMAC-SHA by combining encryption and authentication into a single operation.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GCM will be in the Swift beta.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants