예제 #1
0
        public void Execute()
        {
            var hashingMechanism = hashingMechanismFactory.CreateHashingMechanism();

            hashingMechanism.Execute();

            HashedArmorToken = hashingMechanism.Output;
            Hash             = hashingMechanism.Hash;
        }
        public override void Execute()
        {
            var hashingMechanism = hashingMechanismFactory.CreateHashingMechanism(armorToken);

            hashingMechanism.Execute();

            ArmorTokenGenerationStepResult = new ArmorTokenGenerationStepResult {
                Output = hashingMechanism.Output
            };
        }