Home | History | Annotate | Download | only in boxes

Lines Matching defs:encrypted

165                     IsoTypeWriter.writeUInt32(byteBuffer, pair.encrypted);
216 public Pair createPair(int clear, long encrypted) {
217 return new Pair(clear, encrypted);
223 public long encrypted;
225 public Pair(int clear, long encrypted) {
227 this.encrypted = encrypted;
244 if (encrypted != pair.encrypted) {
254 result = 31 * result + (int) (encrypted ^ (encrypted >>> 32));
260 return "clr:" + clear + " enc:" + encrypted;