@Override
  public void decrypt(final EncryptedJWT encryptedJWT) throws JOSEException {
    init();

    // decrypt
    encryptedJWT.decrypt(buildDecrypter());
  }