wabbajack/Wabbajack.CLI/Verbs/Decrypt.cs
Timothy Baldridge aa85c0dc8c We have a CLI
2020-01-31 15:38:56 -07:00

24 lines
751 B
C#

using Alphaleonis.Win32.Filesystem;
using CommandLine;
using Wabbajack.Common;
namespace Wabbajack.CLI.Verbs
{
[Verb("decrypt", HelpText = @"Decrypt data from AppData\Local\Wabbajack and store it locally", Hidden = true)]
public class Decrypt
{
[Option('n', "name", Required = true, HelpText = @"Credential to encrypt and store in AppData\Local\Wabbajack")]
public string Name { get; set; }
[Option('o', "output", Required = true, HelpText = @"Output file for the decrypted data")]
public string Output { get; set; }
public static int Run(Decrypt opts)
{
File.WriteAllBytes(opts.Output, Utils.FromEncryptedData(opts.Name));
return 0;
}
}
}