protected virtual string AlgorithmName() { if (_algorithmSecondType != AlgorithmType.NONE) { var ret = $"{PluginSupportedAlgorithms.AlgorithmName(_algorithmType)}+{PluginSupportedAlgorithms.AlgorithmName(_algorithmSecondType)}"; return(ret); } // default single algo return(PluginSupportedAlgorithms.AlgorithmName(_algorithmType)); }
protected virtual string AlgorithmName(AlgorithmType algorithmType) => PluginSupportedAlgorithms.AlgorithmName(algorithmType);