public HashArmorTokenGenerationStep(HashingMechanismFactory hashingMechanismFactory, ArmorTokenGenerationStep next) : base(next)
 {
     this.hashingMechanismFactory = hashingMechanismFactory;
 }
Ejemplo n.º 2
0
 public ArmorTokenHasher(HashingMechanismFactory hashingMechanismFactory)
 {
     this.hashingMechanismFactory = hashingMechanismFactory;
 }
 public HashArmorTokenGenerationStep(HashingMechanismFactory hashingMechanismFactory) : base(new EmptyArmorTokenGenerationStep())
 {
     this.hashingMechanismFactory = hashingMechanismFactory;
 }