// RSA Key interface // // Interface to a server which provides a randomly generated RSA public key // and instantiates a Login Server and "service" server with RMI names based // on the hex representation of the public key. // // R. Perry, July 1998 import java.security.*; public interface Key extends java.rmi.Remote { PublicKey getKey( String service) throws java.rmi.RemoteException, java.rmi.server.ServerNotActiveException, java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException; }