示例#1
0
 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));
 }
示例#2
0
 protected virtual string AlgorithmName(AlgorithmType algorithmType) => PluginSupportedAlgorithms.AlgorithmName(algorithmType);