All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----cryptix.math.BigNum | +----cryptix.math.BigInteger
Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) All rights reserved.
public final static BigInteger zero
public final static BigInteger one
public BigInteger()
public BigInteger(int from)
public BigInteger(BigInteger from)
public BigInteger(String hexString)
public BigInteger(byte buffer[])
public int bitLength()
public Object clone()
public void copy(Object src)
public BigInteger assign(BigInteger n)
public BigInteger assign(int n)
public void fromString(String inHex)
public String toString()
protected void finalize()
public BigInteger modExp(BigInteger power, BigInteger modulo)
public BigInteger inverseModN(BigInteger a, BigInteger n)
public BigInteger mod(BigInteger a, BigInteger b)
public BigInteger mul(BigInteger a, BigInteger b)
public BigInteger div(BigInteger a, BigInteger b)
public BigInteger add(BigInteger a, BigInteger b)
public BigInteger add(int a)
public BigInteger sub(BigInteger a, BigInteger b)
public BigInteger gcd(BigNum a, BigNum b)
public int cmp(BigInteger a)
public boolean equals(Object o)
public BigInteger inc()
public BigInteger dec()
public BigInteger shiftLeft(int n)
public BigInteger shiftRight(int n)
public static BigInteger zero()
protected final static byte[] newBuffer(int bitLen)
public byte[] toByteArray()
public void fromByteArray(byte buf[])
public static void main(String argv[])
public static void self_test(PrintStream out, String argv[]) throws Exception
All Packages Class Hierarchy This Package Previous Next Index