XTEA constructor

XTEA(
  1. String password
)

Implementation

XTEA(String password) {
  _xteaKey = _xteaKeyFromString(password);
}