Cryptix V3.2

Uses of Class
cryptix.util.math.BigRegister

Packages that use BigRegister
cryptix.util.math   
 

Uses of BigRegister in cryptix.util.math
 

Subclasses of BigRegister in cryptix.util.math
 class TrinomialLFSR
          A class that implements a special category of Linear Feedback Shift Register (LFSR).
 

Methods in cryptix.util.math that return BigRegister
 BigRegister BigRegister.valueOf(long n)
          Return a BigRegister, of the same size as this set to the specified value.
 BigRegister TrinomialLFSR.toBigRegister()
          Return the state of this LFSR as a BigRegister object where now the powers of the polynomial terms are ordered in ascending succession starting from power 0 at index 0.
 

Methods in cryptix.util.math with parameters of type BigRegister
 void BigRegister.and(BigRegister source)
          Compute this &= source.
 void BigRegister.andNot(BigRegister source)
          Compute this &= ~source.
 void BigRegister.or(BigRegister source)
          Compute this |= source.
 void BigRegister.xor(BigRegister source)
          Compute this ^= source.
 boolean BigRegister.isSameValue(BigRegister x)
          Return true if the parameters of the BigRegister x (size and bits) are equal to this one; false otherwise.
 int BigRegister.compareTo(BigRegister x)
          Compare this BigRegister's contents to that of the argument, returning -1, 0 or 1 for less than, equal to, or greater than comparison result.
 void BigRegister.load(BigRegister source)
          Copy the argument's value into this.
 void TrinomialLFSR.pow(BigRegister n)
          Raise this to the nth power modulo f(x)).
 


Cryptix V3.2

Copyright (C) 1995-2000 The Cryptix Foundation Ltd. All rights reserved.