summary refs log tree commit diff
path: root/crypto/src/crypto/modes/gcm/IGcmMultiplier.cs
blob: ec7b906ee9ea131587e85f6228d27dfa2618017f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Org.BouncyCastle.Crypto.Modes.Gcm
{
	public interface IGcmMultiplier
	{
		void Init(byte[] H);
		void MultiplyH(byte[] x);
	}
}