public PublicKey getPublicKey()

in library/src/main/java/org/apache/fineract/cn/anubis/provider/SystemRsaKeyProvider.java [68:74]


  public PublicKey getPublicKey(final String timestamp) throws InvalidKeyTimestampException {
    if (!timestamp.equals(keyTimestamp)) {
      logger.info("System Key requested for non-existant key timestamp: " + timestamp);
      throw new InvalidKeyTimestampException(timestamp);
    }
    return systemPublicKey;
  }