Package com.penta.issacweb
Class IssacWebKeyPair
- java.lang.Object
-
- com.penta.issacweb.IssacWebKeyPair
-
public class IssacWebKeyPair extends java.lang.Object개인키와 공개키를 갖는 클래스 (JNI 내부에서 생성된 키쌍을 Java에 전달하기 위해 사용됨)
-
-
Constructor Summary
Constructors Constructor Description IssacWebKeyPair()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPrivateKey()java.lang.StringgetPublicKey()booleanhasKeyPair()booleanhasPrivateKey()booleanhasPublicKey()voidsetPrivateKey(java.lang.String privateKey)voidsetPublicKey(java.lang.String publicKey)
-
-
-
Method Detail
-
setPrivateKey
public void setPrivateKey(java.lang.String privateKey)
-
setPublicKey
public void setPublicKey(java.lang.String publicKey)
-
hasPrivateKey
public boolean hasPrivateKey()
-
hasPublicKey
public boolean hasPublicKey()
-
hasKeyPair
public boolean hasKeyPair()
-
getPrivateKey
public java.lang.String getPrivateKey()
-
getPublicKey
public java.lang.String getPublicKey()
-
-