1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Minor clean-ups.

This commit is contained in:
Julian Storer 2010-06-10 12:26:43 +01:00
parent 6bcc8febca
commit 419aac8074
58 changed files with 656 additions and 743 deletions

View file

@ -27,7 +27,6 @@
BEGIN_JUCE_NAMESPACE
#include "juce_RSAKey.h"
#include "juce_Primes.h"
@ -97,7 +96,7 @@ bool RSAKey::applyToValue (BigInteger& value) const
return true;
}
static const BigInteger findBestCommonDivisor (const BigInteger& p, const BigInteger& q)
const BigInteger RSAKey::findBestCommonDivisor (const BigInteger& p, const BigInteger& q)
{
// try 3, 5, 9, 17, etc first because these only contain 2 bits and so
// are fast to divide + multiply