Algorithm Property
The TEA algorithm.
Syntax
public int getAlgorithm(); public void setAlgorithm(int algorithm);
Enumerated values: public final static int taXXTEA = 0; public final static int taXTEA = 1; public final static int taTEA = 2;
Remarks
This property specifies the TEA algorithm to us. It is recommended to use the XXTEA (Corrected Block TEA) algorithm for security reasons. Possible values are:
0 (taXXTEA - default) | Correct Block TEA |
1 (taXTEA) | eXtended TEA |
2 (taTEA) | TEA (Tiny Encryption Algorithm) |
Default Value
0