using System.Buffers.Text;
using System.Reflection.Emit;
using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
string requestJson="hello";
string enc=EncryptData(requestJson);
Console.WriteLine("Hello enc-"+enc);
string plain= DecryptData(enc);
Console.WriteLine("Hello plain-"+plain);
public static string EncryptData(string data)
string StaticKey = "F55FnINFeMiZpmBl8mGGO/EJxZk6fIaJnR2jBt3d9GE=";
string keyId = "f5cce0d5-b566-4821-9d3b-65ebc6f726aa";
byte[] cek = Convert.FromBase64String(StaticKey);
var header = new Dictionary<string, object>
var encryptedData = Jose.JWT.Encode(
public static string DecryptData(string encryptedData)
byte[] StaticKey = Convert.FromBase64String("F55FnINFeMiZpmBl8mGGO/EJxZk6fIaJnR2jBt3d9GE=");
if (string.IsNullOrWhiteSpace(encryptedData))
throw new ArgumentException("Encrypted data cannot be null or empty.", nameof(encryptedData));
var decrypteddata = Jose.JWT.Decode(