Update documentation for these functions.

This commit is contained in:
nicolson%netscape.com 2002-07-03 23:57:12 +00:00
Родитель ea4b451e87
Коммит 9ce34687c6
1 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@ -54,22 +54,16 @@ abstract class PK11Key {
} }
/** /**
* Unimplemented way of getting a standard encoding of the key. Use * Subclasses that support encoding can overload this method.
* a key factory instead.
*/ */
public byte[] getEncoded() { public byte[] getEncoded() {
Assert.notYetImplemented("PK11Key.getEncoded");
// !!!
return null; return null;
} }
/** /**
* Unimplemented way of getting standard encoding format of the key. * Subclasses that support encoding can overload this method.
* Use a key factory instead.
*/ */
public String getFormat() { public String getFormat() {
Assert.notYetImplemented("PK11Key.getFormat");
// !!!
return null; return null;
} }