Swift Crypto 5.0 Release Notes
Swift Crypto 5.0 aligns the cross-platform API surface with CryptoKit as shipped in Xcode 27 (CryptoKit-383.2.1), and takes the opportunity to streamline the package for both adopters and maintainers.
Most users will be able to depend on the 1.0.0, 2.0.0, 3.0.0, 4.0.0, or 5.0.0 series of releases.
To do so, please use the following dependency in your Package.swift:
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "6.0.0"),Requires Swift 6.2
The package now declares 6.2 as the minimum Swift version in its package manifest.
New span-based API
CryptoKit's new non-allocating, span-based entry points are now available cross-platform:
SymmetricKeygainsbytes: RawSpan,init(copying: RawSpan),init(copyingWithZeroing: inout MutableRawSpan), andinit(size:initializingWith:)which initializes the key through aninout OutputRawSpan.HashFunctiongainsupdate(bytes: RawSpan)andhash(bytes: RawSpan), andDigestgainsinit?(copying: RawSpan).HMACgainsauthenticationCode(for: RawSpan, using:).HKDFgainsderiveKey(inputKeyMaterial:salt:info:output:)writing into aninout OutputRawSpan, along with span-basedextractandexpand. The existingDataProtocoloverload now has a fast path for contiguous salt and info.AES.GCMandChaChaPolygain in-placeseal(inPlace:using:nonce:authenticating:tag:)andopen(inPlace:using:nonce:authenticating:tag:)overMutableRawSpan, and theirNoncetypes gainbytes: RawSpanandinit(copying: RawSpan).
Single-use KEM keys
A new KEMOneTimePrivateKey protocol, refining ~Copyable and Sendable, provides a consuming func decapsulate(_:) so a decapsulation key cannot be reused. Conforming types are MLKEM768.OneTimePrivateKey, MLKEM1024.OneTimePrivateKey, and XWingMLKEM768X25519.OneTimePrivateKey.
Extensible enums
Historically Swift Crypto needed a new major version each time CryptoKit added a case to a non-frozen enum, because Swift Crypto is not built with library evolution. All public non-frozen enums are now marked @nonexhaustive (SE-0487), which should remove that reason for future major bumps. Adopters who do not switch over these enums should not need to widen their version constraints again.
Other changes
- Symbols that were previously marked
@_spi(...) publichave been made internal; they were never intended to be available. @availableannotations have been removed fromCrypto; they are unused in all supported compilation modes.- Some internal reference types are now marked
final - Some unused code, e.g.
ECDSASignature.derBytes, is removed.
Build and packaging
- The
CCryptoBoringSSLShimstarget is removed, along with allbindMemory(to:)calls. - The
.gybtemplates for nonces, digests, ECDH, ECDSA, MLDSA, and MLKEM are removed and the generated Swift is checked in. The BoringSSL backend templates for MLDSA and MLKEM remain. - Conditional compilation is simplified to
#if canImport(CryptoKit); branches that could never be taken are gone. - Developing the BoringSSL backend on macOS is no longer supported. Use the Dev Container configuration now shipped in the repository, or build on the target platform.
- Warnings are silenced for vendored C sources:
-Wshorten-64-to-32for BoringSSL andmacro-redefinedfor XKCP. CI builds with-warnings-as-errors.
Commits
The changes in this release were reviewed and merged to the 5.x branch during the beta period:
- 0a26a9e [5.x] Align with CryptoKit APIs from Xcode 27 beta 1 (#442)
- 8ee9962 [5.x] Align with CryptoKit APIs from Xcode 27 beta 2 (#444)
- ce8db47 [5.x] Align with CryptoKit APIs from Xcode 27 beta 4 (#453)
- 15b0fb5 [5.x] Adopt CheckImplementationOnly and CI with -warnings-as-errors (#454)
- b3746b1 [5.x] Remove bindMemory(to:) calls and the CCryptoBoringSSLShims target (#455)
- 57782dc [5.x] Remove duplicate imports from gyb-generated MLDSA backend code (#458)
- 2c45ca2 [5.x] Remove unused internal code path: ECDSASignature.derBytes (#457)
- 33785f6 [5.x] Mark some class types as final (#456)
- 2e074ef [5.x] Remove native SwiftPM build-system workaround in CI (#461)
- 20f9049 [5.x] Align with CryptoKit from Xcode 27 beta 6 (#462)
Full Changelog: 4.5.2...5.0.0