Link to home
Start Free TrialLog in
Avatar of brettr
brettr

asked on

Where is Base64Coder class?

I have a java class with the following imports:

import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

I'd like to use this code:

return Base64Coder.encodeString(new String(cipherText));

But get this error:

Description      Resource      Path      Location      Type
Base64Coder cannot be resolved      TripleDES.java      /Encryption/src      line 31      Java Problem

I'm using Java SE 1.6.  Any suggestions?
ASKER CERTIFIED SOLUTION
Avatar of Venabili
Venabili
Flag of Bulgaria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial