Update documentation for these functions.

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

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

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