2
I am having problems with the encryption of digital (biometrics) in base64
for passage of track parameter http
. The problem is that each capture of the same digital are generated different codes, so it is not possible to compare with those that are registered in the base that has relation one to one (a user, a digital). Only on the level of clarification, I can’t use the class Base64
native to the Java 8
, because customers should run Java 7
, to avoid bureaucratisation by the security of Java 8
. So, for this I only saw so far two alternatives, the first using the method below:
BaseEncoding.base64().encode(digital);
and, the second with:
DatatypeConverter.printBase64Binary(digital);
but in no case generate equal codes for the same digital. Thank you for the help provided to me.
the variable
digital
is of what type?– Marco Giovanni