Have this import in my proyecto import com.sun.org.apache.xml.internal.security.utils.Base64;
but when i go to build and clean with netbeans it give me error,
error: package com.sun.org.apache.xml.internal.security.utils does not exist
Code where Base64 needed:
String encryptedStr = Base64.encode(encrypted, Base64.BASE64DEFAULTLENGTH);
How can i solve this, need i add a external jar to the proyect ?
Thx for all