> -----Original Message----- > From: devl-bounces at freenetproject.org > [mailto:devl-bounces at freenetproject.org] On Behalf Of Matthew Toseland > > + /** > > + * Get the URI at which to insert the solution of this puzzle. > > + */ > > + public FreenetURI getSolutionURI(String guessOfSolution) { > > + String dayOfInsertion = new > SimpleDateFormat("yyyy-MM-dd").format(mDateOfInsertion); > > + return new FreenetURI("KSK", > INTRODUCTION_CONTEXT + "|" + > > + > mInserter.getId() + "|" + > > + > dayOfInsertion + "|" + > > + > mIndex + "|" + > > + > guessOfSolution); /* FIXME: hash the solution!! */ > > Why do you need to hash the solution? >
The solution is hashed anyway because its a KSK, I know. FMS does it like that, can anyone think of a reason or is this just not necessary?
