Algid 구문 분석 오류, 시퀀스가 아닙니다. 다음 방법을 사용하여 파일에서 RSA 개인 키를 읽으려고 할 때 public PrivateKey getPrivateKey() throws NoSuchAlgorithmException, InvalidKeySpecException, IOException { final InputStream inputStream = getClass().getClassLoader() .getResourceAsStream("privatekey"); byte[] privKeyBytes = null; try { privKeyBytes = IOUtils.toByteArray(inputStream); } catch (final IOException exception) { LOGGER.err..