// Generates the cache key for the enclave session cache
 private string GenerateCacheKey(EnclaveSessionParameters enclaveSessionParameters)
 {
     return((enclaveSessionParameters.ServerName + '+' + enclaveSessionParameters.Database + enclaveSessionParameters.AttestationUrl).ToLowerInvariant());
 }