Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2013-09-28Use ECFieldElement.addOne()Peter Dettman
2013-09-28Add method addOne() to ECFieldElementPeter Dettman
2013-09-28Consolidate null curve checks required by implicitlyCa stuffPeter Dettman
2013-09-28Merge branch 'master' of git.bouncycastle.org:bc-javaPeter Dettman
2013-09-28Add constants for lambda-affine and lambda-projective coordinatesPeter Dettman
2013-09-28removed deprecated methods from PKIX, work on implicitly CA.David Hook
2013-09-27Move some local variables aroundPeter Dettman
2013-09-27Redirect the old getters to the new affine gettersPeter Dettman
2013-09-27Review EC code in the provider to ensure points are normalized to affinePeter Dettman
2013-09-27Check for negative r, sPeter Dettman
2013-09-27Make importPoint a public methodPeter Dettman
2013-09-27Ensure all points are on the same curvePeter Dettman
2013-09-27Re-add check for infinity points in ECDH(C), reduce scalar multiplicandPeter Dettman
2013-09-27Remove unused importPeter Dettman
2013-09-27Use ECFieldElement.getEncoded() in place of X9IntegerConverter when wePeter Dettman
2013-09-27Simplify BigIntegers.asUnsignedByteArray implementationPeter Dettman
2013-09-27Add getEncoded method to ECFieldElementPeter Dettman
2013-09-27Don't bother normalizing p as it's only used oncePeter Dettman
2013-09-27Switch to Modified Jacobian coordinates as the default for Fp curvesPeter Dettman
2013-09-27Always set coordinate system in subclass constructorPeter Dettman
2013-09-27Configured curves inherit the original curve settings by defaultPeter Dettman
2013-09-27Track compression in non-affine coordinate systemsPeter Dettman
2013-09-27Move local variable initialisationPeter Dettman
2013-09-27Slight speed improvement for isInfinityPeter Dettman
2013-09-27Change the commented out example of curve configurationPeter Dettman
2013-09-27Use normalizeAll for table normalization in Shamir's TrickPeter Dettman
2013-09-27WNaf entries are always oddPeter Dettman
2013-09-27Optimize twicePlus for Modified Jacobian coordinates to save a fieldPeter Dettman
2013-09-27Normalize twicePPeter Dettman
2013-09-27toString returns hex stringPeter Dettman
2013-09-26Use sign of digit itself instead of wnaf entry signPeter Dettman
2013-09-26Compact(W)Naf allows widths up to 16, and bitlengths < 2^16Peter Dettman
2013-09-26Default to WNafL2RMultiplier (except F2m Koblitz curves)Peter Dettman
2013-09-26Refactor twice() to check coordinates and use a switchPeter Dettman
2013-09-26Refactor duplicated code for Jacobian coordinates in add()Peter Dettman
2013-09-26Make the PreCompInfo and subclasses public visibilityPeter Dettman
2013-09-26Minor refactorPeter Dettman
2013-09-26Use normalizeAll to speed up WNaf precomputationPeter Dettman
2013-09-26Optimize normalizeAll using the Montgomery TrickPeter Dettman
2013-09-26Some renamingPeter Dettman
2013-09-26Add implementation of the Montgomery Trick for inverting several fieldPeter Dettman
2013-09-26EC point equality requires curve equality and is based on comparing thePeter Dettman
2013-09-26Provide typed equalsPeter Dettman
2013-09-26EC multipliers now extend a base class AbstractECMultiplier that takesPeter Dettman
2013-09-26Add normalizeAll method to ECCurve to support subsequent optimizationPeter Dettman
2013-09-26Avoid another BigInteger parsePeter Dettman
2013-09-26Avoid re-parsing _s to BigIntegerPeter Dettman
2013-09-25Add TODO to speed up WNaf precomputationPeter Dettman
2013-09-25Implement "Shamir's trick" using NAF form of the scalarsPeter Dettman
2013-09-25Support precomputing the negated multiples in WNaf, and use inPeter Dettman