{
String type = config.getSecMech();
if (type != null && type.length() > 0)
{
// Wir checken vorher noch, ob es das TAN-Verfahren ueberhaupt noch gibt
PtSecMech mech = PtSecMech.contains(retData.toString(),type);
if (mech != null)
{
// Jepp, gibts noch
retData.replace(0,retData.length(),type);
return true;