ServiceStack.AesUtils.CreateKey C# (CSharp) Method

CreateKey() public static method

public static CreateKey ( ) : byte[]
return byte[]
        public static byte[] CreateKey()
        {
            using (var aes = CreateSymmetricAlgorithm())
            {
                return aes.Key;
            }
        }