Re: KEX Warn default option change force automation developers to have to recompile their applications
As you have found already, you can use the "KEX" raw setting.
There's no way to change this globally. If you need to allow global changes by an external configuration file, just implement it yourself.
You can easily introduce a configuration file with a key-value syntax like:
key1=value1
key2=value2
And just call
Though actually, you should upgrade your server not to use an obsolete KEX algorithm!
There's no way to change this globally. If you need to allow global changes by an external configuration file, just implement it yourself.
You can easily introduce a configuration file with a key-value syntax like:
key1=value1
key2=value2
And just call
sessionOptions.AddRawSettings(key, value)
for each pair.
Though actually, you should upgrade your server not to use an obsolete KEX algorithm!