public EncryptArmorTokenGenerationStep(EncryptionMechanismFactory encryptionMechanismFactory, ArmorTokenGenerationStep next) : base(next)
 {
     this.encryptionMechanismFactory = encryptionMechanismFactory;
 }
示例#2
0
 public ArmorTokenGenerator(ArmorToken armorToken, ArmorTokenGenerationStep first)
 {
     this.armorToken = armorToken;
     this.first      = first;
 }
 public HashArmorTokenGenerationStep(HashingMechanismFactory hashingMechanismFactory, ArmorTokenGenerationStep next) : base(next)
 {
     this.hashingMechanismFactory = hashingMechanismFactory;
 }
 protected ArmorTokenGenerationStep(ArmorTokenGenerationStep next)
 {
     this.next = next;
 }