using System;
using System.Security.Cryptography;
public class Program
{
public static void Main()
int numberOfRandomBytes = 44;
Console.WriteLine ("Key: " + Convert.ToBase64String(RandomNumberGenerator.GetBytes(numberOfRandomBytes)));
}