01: /*
02: * @(#)PublicKey.java 1.5 02/07/24 @(#)
03: *
04: * Copyright (c) 2000-2001 Sun Microsystems, Inc. All rights reserved.
05: * PROPRIETARY/CONFIDENTIAL
06: * Use is subject to license terms.
07: */
08:
09: package com.sun.portal.ksecurity;
10:
11: /**
12: * The PublicKey abstract class is the base class for all public
13: * keys used in asymmetric algorithms.
14: */
15: public abstract interface PublicKey extends Key {
16: }
|