bc-java
bc-java copied to clipboard
DEFAULT_VERSION placeholder in class ArmoredOutputStream not substituted with real version during release of bcpg-fips 2.0.9 and 2.0.10
The bcpg-fips source code for org/bouncycastle/bcpg/ArmoredOutputStream.java contains at-least for release 2.0.9 and 2.0.10 still the version placeholder instead of the real version:
public static final String DEFAULT_VERSION = "BCPG v@RELEASE_NAME@";
This should have been repaced with the actual version number, e.g.:
public static final String DEFAULT_VERSION = "BCPG v2.0.10";