in src/main/java/org/apache/maven/plugins/gpg/BcSigner.java [229:234]
private void expectOK(BufferedReader in) throws IOException {
String response = in.readLine();
if (!response.startsWith("OK")) {
throw new IOException("Expected OK but got this instead: " + response);
}
}