cryptix.security.rsa
Interface RSAKeyGenObserver

All Superinterfaces:
TestPrimeObserver
All Known Implementing Classes:
KeyGen, KeyGenThread

public interface RSAKeyGenObserver
extends TestPrimeObserver

This class is an RSA key generator callback for monitoring progress

Copyright (c) 1995, 1996 Systemics Ltd (http://www.systemics.com/) All rights reserved.


Field Summary
static int FINDING_P
          the RSA Key Generator is searching for a suitable P
static int FINDING_Q
          the RSA Key Generator is searching for a suitable Q
static int KEY_GEN_DONE
          the RSA Key Generator has finished
static int KEY_RESOLVING
          the RSA Key Generator is generation a key from P and Q
 
Fields inherited from interface cryptix.math.TestPrimeObserver
HAS_SMALL_FACTORS, IS_PRIME, NO_SMALL_FACTORS, NOT_PRIME
 
Methods inherited from interface cryptix.math.TestPrimeObserver
handleEvent
 

Field Detail

FINDING_P

public static final int FINDING_P
the RSA Key Generator is searching for a suitable P

See Also:
Constant Field Values

FINDING_Q

public static final int FINDING_Q
the RSA Key Generator is searching for a suitable Q

See Also:
Constant Field Values

KEY_RESOLVING

public static final int KEY_RESOLVING
the RSA Key Generator is generation a key from P and Q

See Also:
Constant Field Values

KEY_GEN_DONE

public static final int KEY_GEN_DONE
the RSA Key Generator has finished

See Also:
Constant Field Values