Open configs for public API

This commit is contained in:
JustArchi
2019-01-14 21:50:23 +01:00
parent 15c0f8ebbe
commit 18d5f1938f
20 changed files with 292 additions and 263 deletions

View File

@@ -26,7 +26,7 @@ using ArchiSteamFarm.Localization;
using SteamKit2;
namespace ArchiSteamFarm {
internal static class ArchiCryptoHelper {
public static class ArchiCryptoHelper {
private static byte[] EncryptionKey = Encoding.UTF8.GetBytes(nameof(ArchiSteamFarm));
internal static string Decrypt(ECryptoMethod cryptoMethod, string encrypted) {
@@ -189,7 +189,7 @@ namespace ArchiSteamFarm {
}
}
internal enum ECryptoMethod : byte {
public enum ECryptoMethod : byte {
PlainText,
AES,
ProtectedDataForCurrentUser