File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -278,6 +278,7 @@ class BLAKE2s : public SimpleKeyingInterfaceImpl<MessageAuthenticationCode, BLAK
278278 // / Message Authentication Code (MAC)</A>. For example, "BLAKE2b-512" and "BLAKE2s-256".
279279 std::string AlgorithmName () const {return std::string (BLAKE2s_Info::StaticAlgorithmName ()) + " -" + IntToString (DigestSize ()*8 );}
280280
281+ unsigned int BlockSize () const {return BLOCKSIZE;}
281282 unsigned int DigestSize () const {return m_digestSize;}
282283 unsigned int OptimalDataAlignment () const ;
283284
@@ -376,6 +377,7 @@ class BLAKE2b : public SimpleKeyingInterfaceImpl<MessageAuthenticationCode, BLAK
376377 // / Message Authentication Code (MAC)</A>. For example, "BLAKE2b-512" and "BLAKE2s-256".
377378 std::string AlgorithmName () const {return std::string (BLAKE2b_Info::StaticAlgorithmName ()) + " -" + IntToString (DigestSize ()*8 );}
378379
380+ unsigned int BlockSize () const {return BLOCKSIZE;}
379381 unsigned int DigestSize () const {return m_digestSize;}
380382 unsigned int OptimalDataAlignment () const ;
381383
You can’t perform that action at this time.
0 commit comments