Skip to content

Commit 1e12cdf

Browse files
authored
Made Base64UrlHelper.Encode(byte[]) public (#252)
* make Encode(byte[]) public for keyvault * <clear /> * only nuget left
1 parent fe5b728 commit 1e12cdf

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

NuGet.config

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="local-packages" value="local-packages" />
4+
<clear />
55
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6-
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
7-
<add key="powershell-core" value="https://powershell.myget.org/F/powershell-core/api/v3/index.json" />
86
</packageSources>
97
</configuration>

src/Common/Utilities/Base64UrlHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static byte[] DecodeToBytes(string arg)
7878
return Convert.FromBase64String(s); // Standard base64 decoder
7979
}
8080

81-
internal static string Encode(byte[] arg)
81+
public static string Encode(byte[] arg)
8282
{
8383
if (arg == null)
8484
{

0 commit comments

Comments
 (0)