diff --git a/Interfaces/IChecksum.cs b/Interfaces/IChecksum.cs index 6cf2015..f0738b5 100644 --- a/Interfaces/IChecksum.cs +++ b/Interfaces/IChecksum.cs @@ -36,11 +36,22 @@ // Copyright © 2011-2023 Natalia Portillo // ****************************************************************************/ +using System; + namespace Aaru.CommonTypes.Interfaces; /// Defines the interface to implement a checksum or hashing algorithm public interface IChecksum { + /// Plugin author + string Author { get; } + + /// Plugin name. + string Name { get; } + + /// Plugin UUID. + Guid Id { get; } + /// Updates the hash with data. /// Data buffer. /// Length of buffer to hash.