@using Core
Paste File Content Here
@if (!string.IsNullOrEmpty(@keyGen)) {
Click to Copy Generated Key to Clipboard
}
@code { private string rawData { get; set; } = ""; private string keyGen { get; set; } = ""; private async Task GenerateKey() { // recupero dati.. if (!string.IsNullOrEmpty(rawData)) { var cMDV = new MachineDataValidator(rawData); if (cMDV.hasValidData) { keyGen = cMDV.machineKeyHash; } else { keyGen = ""; } } await Task.Delay(1); } }