; if(b>=52&&b<62)
sb.append((char)(b-4));
if(b==62)
sb.append('+');
if(b==63)
sb.append('/');
if(sb.length()%76==0)
sb.append(' ');
}
//now set the end chars to be pad character if there
//was less than integral input (ie: less than 24 bits)
if(end)
{
if(j==1)
sb.append("==");
if(j==2)
sb.append('=');
}
enc[0]=0;enc[1]=0;enc[2]=0;
j=0;
}
}
return sb.toString();
}
}
sb.append((char)(b-4));
if(b==62)
sb.append('+');
if(b==63)
sb.append('/');
if(sb.length()%76==0)
sb.append(' ');
}
//now set the end chars to be pad character if there
//was less than integral input (ie: less than 24 bits)
if(end)
{
if(j==1)
sb.append("==");
if(j==2)
sb.append('=');
}
enc[0]=0;enc[1]=0;enc[2]=0;
j=0;
}
}
return sb.toString();
}
}