Esempio n. 1
0
 public void LinkFrontendSetup()
 {
     var decrypter = new DecryptStm();
     var encrypter = new EncryptStm();
     _fakePhysical = Substitute.For<IPhysical>();
     _uut = new Link(decrypter, encrypter, _fakePhysical, 1000);
 }
Esempio n. 2
0
 public void Reset(DecryptStm context)
 {
     context.SetState(new Idle());
 }
Esempio n. 3
0
 public virtual bool ParseByte(DecryptStm context, byte b)
 {
     throw new ArgumentException();
 }
Esempio n. 4
0
 public virtual void OnEnter(DecryptStm context)
 {
 }
Esempio n. 5
0
 public virtual void NewMessage(DecryptStm context, byte[] buffer)
 {
     throw new ArgumentException();
 }