아래의 코드에서 RSA 용으로 생성 된 공개 키와 개인 키를 인쇄하려고 할 때 무엇이 발생합니까?아래 코드에서 RSA 용으로 생성 된 공개 키 및 개인 키를 인쇄하려고 할 때 무엇이 발생합니까?
public void generateKeyPair()throws Exception{
KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA");
keyGen.initialize(1024);
KeyPair key = keyGen.generateKeyPair();
System.out.println("Private Key --> "+key.getPrivate());
System.out.println("Public Key --> "+ key.getPublic());
}
출력 : 용
Private Key --> [email protected]
Public Key --> Sun RSA public key, 1024 bits
modulus: 91070638360884489717846387624081331865380920530817450364127225655147956614794217905486935019170980669357616099533814798328666299188081771295145969332740783420682208946757921176081598083665454855067910689297215183406707874995244612816580868221470575486438389243678546960355939828269782848832295142018678264741
public exponent: 65537