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 (Collapse)Author
2013-09-28For EC performance test, change the point every 10 rounds and change thePeter Dettman
scalar every round
2013-09-28ECPoint equals now compares normalized points internallyPeter Dettman
2013-09-28Enable lambda-projective support though there are still some problemsPeter Dettman
with the test cases
2013-09-28Some more tightening and optimization of lambda-project coordsPeter Dettman
2013-09-28Add ECPoint.toString() methodPeter Dettman
Add checkCurveEquation to validate lambda-projective points Fix negate() for lambda-projective points
2013-09-28Add constant for skewed coordinatesPeter Dettman
2013-09-28Implement addition and some other bits and pieces for lambda-projectivePeter Dettman
coordinates
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
Distinguish 'raw' coordinate values to allow for Lambda-encoding of the y coordinate Add initial implementation of twice() for lambda-projective
2013-09-28updateDavid Hook
2013-09-28updateDavid Hook
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-27One more getAffineYCoordPeter Dettman
2013-09-27Review EC code in the provider to ensure points are normalized to affinePeter Dettman
coordinates and that this is checked by accessing coordinates using getAffine[XY]Coord methods
2013-09-27Check for negative r, sPeter Dettman
Refactor local variables
2013-09-27Make importPoint a public methodPeter Dettman
2013-09-27Ensure all points are on the same curvePeter Dettman
Take advantage of normalizeAll
2013-09-27Re-add check for infinity points in ECDH(C), reduce scalar multiplicandPeter Dettman
by N in ECDHC
2013-09-27Remove unused importPeter Dettman
2013-09-27Use ECFieldElement.getEncoded() in place of X9IntegerConverter when wePeter Dettman
have a field element already
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
hashCode has to normalize point first Safe lazy construction of Modified Jacobian W coordinate when the following operation is an add Enable Z=1 optimisations for Homogeneous add Co-Z optimization for Jacobian add Bring naming conventions into line somewhat
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
multiplication
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
Cleanup and add comments
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