Skip to content

Instantly share code, notes, and snippets.

@shigeyas
Created November 17, 2010 03:09
Show Gist options
  • Save shigeyas/702919 to your computer and use it in GitHub Desktop.
Save shigeyas/702919 to your computer and use it in GitHub Desktop.
fgrep 'float|double' *.h in Crypt++ 5.5.2
bench.h:extern const double CLOCK_TICKS_PER_SECOND;
bench.h:void BenchmarkAll(double t, double hertz);
bench.h:void BenchmarkAll2(double t, double hertz);
config.h:// VC60 workaround: can't cast unsigned __int64 to float or double
hrtimer.h: double ElapsedTimeAsDouble();
hrtimer.h: double ConvertTo(TimerWord t, Unit unit);
network.h: double TimeToNextTransceive();
network.h: typedef std::deque<std::pair<double, lword> > OpQueue;
network.h: double m_nextTransceiveTime;
network.h: double GetCurTimeAndCleanUp();
network.h: virtual float ComputeCurrentSpeed() =0;
network.h: virtual float GetMaxObservedSpeed() const =0;
network.h: float ComputeCurrentSpeed();
network.h: float GetMaxObservedSpeed() const;
network.h: float m_byteCountSinceLastTimerReset, m_currentSpeed, m_maxObservedSpeed;
pwdbased.h: virtual unsigned int DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds=0) const =0;
pwdbased.h: unsigned int DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds=0) const;
pwdbased.h: unsigned int DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds=0) const;
pwdbased.h:unsigned int PKCS5_PBKDF1<T>::DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds) const
pwdbased.h:unsigned int PKCS5_PBKDF2_HMAC<T>::DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds) const
pwdbased.h: unsigned int DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds) const;
pwdbased.h:unsigned int PKCS12_PBKDF<T>::DeriveKey(byte *derived, size_t derivedLen, byte purpose, const byte *password, size_t passwordLen, const byte *salt, size_t saltLen, unsigned int iterations, double timeInSeconds) const
rng.h: double GetTestValue() const;
rng.h: double sum;
wait.h: void ScheduleEvent(double milliseconds, CallStack const& callStack);
wait.h: double m_firstEventTime;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment