From 78280aa26faedda91954d31e7ac7cd8aa2d4bcfd Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 5 Oct 2023 12:55:21 +0100 Subject: [PATCH] [IChecksum] Add missing fields for interface. --- Interfaces/IChecksum.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) 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.