private static string GetKey(ConDepEncryptOptions options) { return(string.IsNullOrWhiteSpace(options.Key) ? JsonPasswordCrypto.GenerateKey(256) : options.Key); }
private string GetKey(ConDepEncryptOptions options) { return string.IsNullOrWhiteSpace(options.Key) ? JsonPasswordCrypto.GenerateKey(256) : options.Key; }