You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `HashAlgorithm` instances passed to the `HashingPlugin` constructor in the previous example are actually converted to instances of `CopyToHashCalculator` via an implicit conversion operator. You can instantiate this class yourself to have more control over the conversion method that converts a hash byte array into a string as well as the name used to identify the hash calculator.
166
168
167
169
```csharp
168
-
// You can explicitly create instances of CopyToHashCalculator to have more control over the
169
-
// conversion method and the name that identifies the hash calculator within the HashingPlugin.
170
+
// You can explicitly create instances of CopyToHashCalculator to have
171
+
// more control over the conversion method and the name that identifies
0 commit comments