Documentation Coverage Report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System.Security.Cryptography; 2 : 3 : namespace Cqrs.Bus 4 : { 5 : /// <summary> 6 : /// A factory for creating new instances of <see cref="HashAlgorithm"/>, used for signing network messages. 7 : /// </summary> 8 : public interface IHashAlgorithmFactory 9 : { 10 : /// <summary> 11 : /// Creates a new instance of <see cref="HashAlgorithm"/>, used for signing network messages. 12 : /// </summary> 13 1 : HashAlgorithm Create(); 14 : } 15 : } |
Generated by: LCOV version 1.12 |