File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/libraries/Microsoft.Bcl.Cryptography/src Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ internal static class Program
18
18
private static void Main ()
19
19
{
20
20
byte [] key = LoadKey ();
21
- SP800108HmacCounterKdf kbkdf = new (key , HashAlgorithmName .SHA256 );
21
+ using SP800108HmacCounterKdf kbkdf = new (key , HashAlgorithmName .SHA256 );
22
22
byte [] derivedKey = kbkdf .DeriveKey (" label" u8 , " context" u8 , derivedKeyLengthInBytes : 32 );
23
23
}
24
24
}
@@ -29,6 +29,10 @@ internal static class Program
29
29
The main types provided by this library are:
30
30
31
31
* ` System.Security.Cryptography.AesGcm `
32
+ * ` System.Security.Cryptography.CompositeMLDsa `
33
+ * ` System.Security.Cryptography.MLDsa `
34
+ * ` System.Security.Cryptography.MLKem `
35
+ * ` System.Security.Cryptography.SlhDsa `
32
36
* ` System.Security.Cryptography.SP800108HmacCounterKdf `
33
37
* ` System.Security.Cryptography.X509Certificates.X509CertificateLoader `
34
38
You can’t perform that action at this time.
0 commit comments