Soenneker.Extensions.Spans.Bytes
4.0.24
Prefix Reserved
dotnet add package Soenneker.Extensions.Spans.Bytes --version 4.0.24
NuGet\Install-Package Soenneker.Extensions.Spans.Bytes -Version 4.0.24
<PackageReference Include="Soenneker.Extensions.Spans.Bytes" Version="4.0.24" />
<PackageVersion Include="Soenneker.Extensions.Spans.Bytes" Version="4.0.24" />
<PackageReference Include="Soenneker.Extensions.Spans.Bytes" />
paket add Soenneker.Extensions.Spans.Bytes --version 4.0.24
#r "nuget: Soenneker.Extensions.Spans.Bytes, 4.0.24"
#:package Soenneker.Extensions.Spans.Bytes@4.0.24
#addin nuget:?package=Soenneker.Extensions.Spans.Bytes&version=4.0.24
#tool nuget:?package=Soenneker.Extensions.Spans.Bytes&version=4.0.24
Soenneker.Extensions.Spans.Bytes
Extension methods for efficient and security-sensitive operations on writable byte spans.
Installation
dotnet add package Soenneker.Extensions.Spans.Bytes
Usage
using Soenneker.Extensions.Spans.Bytes;
Span<byte> key = stackalloc byte[32];
// use key...
key.SecureZero();
SecureZero() mutates the supplied span in place and is exactly a convenience call to CryptographicOperations.ZeroMemory. Unlike an ordinary Clear(), the runtime guarantees the write will not be optimized away. It is appropriate for keys and other secrets once they are no longer needed.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Extensions.Spans.Bytes:
| Package | Downloads |
|---|---|
|
Soenneker.Extensions.Spans.Chars
Various helpful character span extension methods |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.24 | 2,279 | 9/15/2026 |
| 4.0.23 | 6,704 | 9/12/2026 |
| 4.0.22 | 22,380 | 8/29/2026 |
| 4.0.20 | 98 | 8/29/2026 |
| 4.0.19 | 27,960 | 7/28/2026 |
| 4.0.18 | 12,879 | 7/16/2026 |
| 4.0.17 | 19,572 | 6/19/2026 |
| 4.0.16 | 16,798 | 6/5/2026 |
| 4.0.15 | 25,199 | 4/22/2026 |
| 4.0.14 | 10,832 | 3/13/2026 |
| 4.0.13 | 172 | 3/12/2026 |
| 4.0.12 | 130 | 3/12/2026 |
| 4.0.11 | 132 | 3/12/2026 |
| 4.0.10 | 234 | 3/12/2026 |
| 4.0.9 | 187 | 3/10/2026 |
| 4.0.8 | 219 | 3/9/2026 |
| 4.0.7 | 128 | 3/9/2026 |
| 4.0.6 | 124 | 3/9/2026 |
| 4.0.5 | 472 | 3/4/2026 |
| 4.0.4 | 591 | 1/2/2026 |
Update dependency dotnet-sdk to v10.0.401 (#230)
Automatically merged