├── .gitattributes ├── doc ├── img │ ├── app.png │ ├── Userguide.png │ └── awsconfigure.png └── tasks.txt ├── src ├── KeyConvert │ ├── app.rc │ ├── app.ico │ ├── Resource.h │ ├── KeyConvert.h │ ├── CLRTest │ │ ├── App.config │ │ ├── Properties │ │ │ ├── Settings.settings │ │ │ ├── Settings.Designer.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── CLRTest.csproj │ ├── CLR.h │ ├── AssemblyInfo.cpp │ ├── CLR.cpp │ ├── KeyConvert.cpp │ ├── puttymem.h │ ├── CLR.sln │ ├── CLR.vcxproj.filters │ ├── misc.h │ ├── sshbn.h │ ├── CLR.vcxproj │ ├── sshpubk.cpp │ ├── sshsha.cpp │ ├── misc.cpp │ ├── ssh.h │ ├── sshmd5.cpp │ ├── sshsh512.cpp │ ├── import.cpp │ └── sshdss.cpp ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml.cs ├── App.xaml ├── GameLiftRemotePlus.sln ├── ScalingWindow.xaml ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── GameLiftRemotePlus.csproj ├── MainWindow.xaml └── ScalingWindow.xaml.cs ├── CODE_OF_CONDUCT.md ├── .gitignore ├── LICENSE.md ├── THIRD-PARTY-LICENSES_UXADCnx5Bg.txt ├── CONTRIBUTING.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /doc/img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-remote-plus/HEAD/doc/img/app.png -------------------------------------------------------------------------------- /doc/img/Userguide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-remote-plus/HEAD/doc/img/Userguide.png -------------------------------------------------------------------------------- /src/KeyConvert/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-remote-plus/HEAD/src/KeyConvert/app.rc -------------------------------------------------------------------------------- /doc/img/awsconfigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-remote-plus/HEAD/doc/img/awsconfigure.png -------------------------------------------------------------------------------- /src/KeyConvert/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-remote-plus/HEAD/src/KeyConvert/app.ico -------------------------------------------------------------------------------- /src/KeyConvert/Resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /src/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/KeyConvert/KeyConvert.h: -------------------------------------------------------------------------------- 1 | // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | // SPDX-License-Identifier: MIT-0 3 | 4 | #pragma once 5 | 6 | int KeyConvertNative(char *importPath, char *exportPath); -------------------------------------------------------------------------------- /src/KeyConvert/CLRTest/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace GameLiftRemotePlus 4 | { 5 | /// 6 | /// Interaction logic for App.xaml 7 | /// 8 | public partial class App : Application 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/KeyConvert/CLRTest/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/KeyConvert/CLR.h: -------------------------------------------------------------------------------- 1 | // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | // SPDX-License-Identifier: MIT-0 3 | 4 | #pragma once 5 | 6 | namespace CLR { 7 | using namespace System; 8 | 9 | public ref class KeyConvert 10 | { 11 | public: 12 | static int Convert(String ^importPath, String ^exportPath); 13 | }; 14 | } 15 | -------------------------------------------------------------------------------- /src/KeyConvert/CLRTest/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/KeyConvert/CLRTest/App.xaml.cs: -------------------------------------------------------------------------------- 1 | // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | // SPDX-License-Identifier: MIT-0 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Configuration; 7 | using System.Data; 8 | using System.Linq; 9 | using System.Threading.Tasks; 10 | using System.Windows; 11 | 12 | namespace CLRTest 13 | { 14 | /// 15 | /// Interaction logic for App.xaml 16 | /// 17 | public partial class App : Application 18 | { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # temporary directories 2 | bin/ 3 | obj/ 4 | env/ 5 | Debug/ 6 | Release/ 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | 11 | # Autogenerated VS solution and project files 12 | *.suo 13 | *.tmp 14 | *.user 15 | *.userprefs 16 | *.pidb 17 | *.booproj 18 | *.svd 19 | *.pdb 20 | *.opendb 21 | *.sdf 22 | 23 | # the autogenerated shortcut to run the latest build in the project root 24 | runlatestversion.lnk 25 | 26 | # the local settings file 27 | setting.txt 28 | 29 | # the AWSSDK files that lives in the build source (build\build.bat will recreate these for you) 30 | src/AWSSDK.*.dll 31 | 32 | # any keys! 33 | *.pem 34 | *.ppk 35 | 36 | -------------------------------------------------------------------------------- /src/KeyConvert/CLRTest/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 |