Skip to content

Commit 790b08f

Browse files
authored
Merge pull request #380 from dotnet/feature/crypto-public
Make CryptoPal implementations public
2 parents cf1021d + 586fba9 commit 790b08f

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Kerberos.NET/Crypto/Pal/Linux/LinuxCryptoPal.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// -----------------------------------------------------------------------
1+
// -----------------------------------------------------------------------
22
// Licensed to The .NET Foundation under one or more agreements.
33
// The .NET Foundation licenses this file to you under the MIT license.
44
// -----------------------------------------------------------------------
@@ -8,7 +8,7 @@
88

99
namespace Kerberos.NET.Crypto
1010
{
11-
internal class LinuxCryptoPal : CryptoPal
11+
public class LinuxCryptoPal : CryptoPal
1212
{
1313
public LinuxCryptoPal()
1414
{
@@ -56,4 +56,4 @@ public LinuxCryptoPal()
5656

5757
public override IKeyAgreement DiffieHellmanModp14(IExchangeKey privateKey) => throw PlatformNotSupported("DH-MODP-14");
5858
}
59-
}
59+
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// -----------------------------------------------------------------------
1+
// -----------------------------------------------------------------------
22
// Licensed to The .NET Foundation under one or more agreements.
33
// The .NET Foundation licenses this file to you under the MIT license.
44
// -----------------------------------------------------------------------
55

66
namespace Kerberos.NET.Crypto
77
{
8-
internal class OSXCryptoPal : LinuxCryptoPal
8+
public class OSXCryptoPal : LinuxCryptoPal
99
{
1010
public OSXCryptoPal()
1111
{
@@ -15,4 +15,4 @@ public OSXCryptoPal()
1515
}
1616
}
1717
}
18-
}
18+
}

Kerberos.NET/Crypto/Pal/Windows/WindowsCryptoPal.cs

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

99
namespace Kerberos.NET.Crypto
1010
{
11-
internal class WindowsCryptoPal : CryptoPal
11+
public class WindowsCryptoPal : CryptoPal
1212
{
1313
public WindowsCryptoPal()
1414
{

0 commit comments

Comments
 (0)