public void ValidateConsoleMessage(string consoleMsg)
        {
            LMKPairs.LMKPair tmp;
            string           tempVar = "";

            KeyTypeTable.ParseKeyTypeCode(consoleMsg, out tmp, out tempVar);
        }
Example #2
0
 protected bool ValidateKeyTypeCode(string ktc, out LMKPairs.LMKPair Pair, ref string Var, ref ThalesCore.Message.MessageResponse MR)
 {
     Pair = LMKPairs.LMKPair.Null;
     try
     {
         KeyTypeTable.ParseKeyTypeCode(ktc, out Pair, out Var);
         return(true);
     }
     catch (ThalesCore.Exceptions.XInvalidKeyType ex)
     {
         MR.AddElement(ErrorCodes.ER_04_INVALID_KEY_TYPE_CODE);
         return(false);
     }
 }
Example #3
0
 protected void ValidateKeyTypeCode(string ktc, out LMKPairs.LMKPair Pair, out string Var)
 {
     KeyTypeTable.ParseKeyTypeCode(ktc, out Pair, out Var);
 }