Skip to content

Commit 5e69dab

Browse files
authored
Update Microsoft.Bcl.Cryptography nuget package text
1 parent e22ee70 commit 5e69dab

File tree

1 file changed

+5
-1
lines changed
  • src/libraries/Microsoft.Bcl.Cryptography/src

1 file changed

+5
-1
lines changed

src/libraries/Microsoft.Bcl.Cryptography/src/PACKAGE.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal static class Program
1818
private static void Main()
1919
{
2020
byte[] key = LoadKey();
21-
SP800108HmacCounterKdf kbkdf = new(key, HashAlgorithmName.SHA256);
21+
using SP800108HmacCounterKdf kbkdf = new(key, HashAlgorithmName.SHA256);
2222
byte[] derivedKey = kbkdf.DeriveKey("label"u8, "context"u8, derivedKeyLengthInBytes: 32);
2323
}
2424
}
@@ -29,6 +29,10 @@ internal static class Program
2929
The main types provided by this library are:
3030

3131
* `System.Security.Cryptography.AesGcm`
32+
* `System.Security.Cryptography.CompositeMLDsa`
33+
* `System.Security.Cryptography.MLDsa`
34+
* `System.Security.Cryptography.MLKem`
35+
* `System.Security.Cryptography.SlhDsa`
3236
* `System.Security.Cryptography.SP800108HmacCounterKdf`
3337
* `System.Security.Cryptography.X509Certificates.X509CertificateLoader`
3438

0 commit comments

Comments
 (0)