Skip to content

Commit 59a5ce1

Browse files
authored
Add UrlFormat to PQC Experimental attribute
1 parent e097b8b commit 59a5ce1

File tree

16 files changed

+60
-60
lines changed

16 files changed

+60
-60
lines changed

src/libraries/Common/src/System/Security/Cryptography/MLDsa.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace System.Security.Cryptography
2525
/// The derived classes are intended for interop with the underlying system
2626
/// cryptographic libraries.
2727
/// </remarks>
28-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
28+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
2929
public abstract partial class MLDsa : IDisposable
3030
#if DESIGNTIMEINTERFACES
3131
#pragma warning disable SA1001

src/libraries/Common/src/System/Security/Cryptography/MLDsaAlgorithm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace System.Security.Cryptography
88
/// <summary>
99
/// Represents a specific algorithm within the ML-DSA family.
1010
/// </summary>
11-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
11+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
1212
public sealed class MLDsaAlgorithm
1313
{
1414
/// <summary>

src/libraries/Common/src/System/Security/Cryptography/MLDsaImplementation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace System.Security.Cryptography
88
{
9-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
9+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
1010
internal sealed partial class MLDsaImplementation : MLDsa
1111
{
1212
private MLDsaImplementation(MLDsaAlgorithm algorithm)

src/libraries/Common/src/System/Security/Cryptography/MLKem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace System.Security.Cryptography
2626
/// cryptographic libraries.
2727
/// </para>
2828
/// </remarks>
29-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
29+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
3030
public abstract class MLKem : IDisposable
3131
{
3232
private static readonly string[] s_knownOids = [Oids.MlKem512, Oids.MlKem768, Oids.MlKem1024];

src/libraries/Common/src/System/Security/Cryptography/MLKemAlgorithm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace System.Security.Cryptography
1111
/// </summary>
1212
/// <seealso cref="MLKem" />
1313
[DebuggerDisplay("{Name,nq}")]
14-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
14+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
1515
public sealed class MLKemAlgorithm : IEquatable<MLKemAlgorithm>
1616
{
1717
private MLKemAlgorithm(

src/libraries/Common/src/System/Security/Cryptography/SlhDsa.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace System.Security.Cryptography
1919
/// The derived classes are intended for interop with the underlying system
2020
/// cryptographic libraries.
2121
/// </remarks>
22-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
22+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
2323
public abstract partial class SlhDsa : IDisposable
2424
#if DESIGNTIMEINTERFACES
2525
#pragma warning disable SA1001

src/libraries/Common/src/System/Security/Cryptography/SlhDsaAlgorithm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace System.Security.Cryptography
1010
/// Represents a specific algorithm within the SHL-DSA family.
1111
/// </summary>
1212
[DebuggerDisplay("{Name,nq}")]
13-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
13+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
1414
public sealed class SlhDsaAlgorithm
1515
{
1616
/// <summary>

src/libraries/Common/src/System/Security/Cryptography/SlhDsaImplementation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace System.Security.Cryptography
88
{
9-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
9+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
1010
internal sealed partial class SlhDsaImplementation : SlhDsa
1111
{
1212
internal static partial bool SupportsAny();

src/libraries/System.Security.Cryptography/ref/System.Security.Cryptography.cs

Lines changed: 29 additions & 29 deletions
Large diffs are not rendered by default.

src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/MLDsaOpenSsl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace System.Security.Cryptography
2020
/// cryptographic libraries.
2121
/// </para>
2222
/// </remarks>
23-
[Experimental(Experimentals.PostQuantumCryptographyDiagId)]
23+
[Experimental(Experimentals.PostQuantumCryptographyDiagId, UrlFormat = Experimentals.SharedUrlFormat)]
2424
public sealed partial class MLDsaOpenSsl : MLDsa
2525
{
2626
private SafeEvpPKeyHandle _key;

0 commit comments

Comments
 (0)