summary refs log tree commit diff
path: root/crypto/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | More porting from Java TLSPeter Dettman2014-07-233-85/+871
| | |
| * | Update cipher suites from JavaPeter Dettman2014-07-232-73/+127
| | |
| * | Port of new TlsEccUtilities class from JavaPeter Dettman2014-07-2316-71/+896
| | | | | | | | | | | | | | | Various support methods in TlsUtilities and Arrays Fix short->byte for several enumeration types
| * | Add automatic EC point validation for decoded points and for multiplier outputsPeter Dettman2014-07-2323-463/+373
| | |
| * | Update encrypt_then_mac entryPeter Dettman2014-07-231-4/+2
| | |
| * | Port of encoding fix from JavaPeter Dettman2014-07-221-2/+2
| | |
| * | BMA-105Peter Dettman2014-07-213-121/+148
| | | | | | | | | | | | | | | Support for parsing Gost3410x2001 private keys encoded as DER Integer Miscellaneous support methods ported from Java
| * | Port of PrivateKeyInfo changes from JavaPeter Dettman2014-07-214-515/+524
| | |
| * | Port update from JavaPeter Dettman2014-07-211-2/+3
| | |
| * | [BMA-117]Peter Dettman2014-07-211-41/+41
| | | | | | | | | | | | Cope with redundant ExtendedKeyUsage entries
| * | Port a few Java openpgp updatesPeter Dettman2014-07-216-264/+274
| | |
| * | Port constant-time extensions from JavaPeter Dettman2014-07-211-221/+371
| | |
| * | Use AddTo/SubFrom and add a generic modular-addition methodPeter Dettman2014-07-211-7/+17
| | |
| * | Port a few more GCM/GMac updatesPeter Dettman2014-07-212-94/+100
| | |
| * | De-tabifyPeter Dettman2014-07-211-176/+176
| | |
| * | Port of latest GCM/OCB changesPeter Dettman2014-07-211-15/+13
| | |
| * | Registerize inner loopsPeter Dettman2014-07-213-226/+184
| | |
| * | De-tabifyPeter Dettman2014-07-213-1302/+1302
| | |
| * | De-tabifyPeter Dettman2014-07-211-88/+88
| | |
| * | Use higher precision approximations for g1/g2 (GLV Type B)Peter Dettman2014-07-022-21/+21
| | |
| * | Fix inverted sense of "negs" in ImplSumOfMultiplies (porting error)Peter Dettman2014-06-301-1/+1
| |/
| * Check the low-bit of y is consistent with the header byte in hybrid EC point ↵Peter Dettman2014-05-191-6/+20
| | | | | | | | encodings
| * Port some minor updates from JavaPeter Dettman2014-04-171-4/+4
| |
| * Set the SecureRandom more intelligentlyPeter Dettman2014-04-162-144/+141
| | | | | | | | Change access modifiers to support subclassing
| * Add low-weight guard to ECKeyPairGeneratorPeter Dettman2014-04-161-2/+16
| |
| * Check for low-weight numbers in DH parameter generation and RSA key generationPeter Dettman2014-04-113-167/+207
| |
| * Fixed-point-comb uses existing precomputation info if it's for the same _or ↵ release-1.8.0-beta.3Peter Dettman2014-04-103-9/+24
| | | | | | | | greater_ width as requested
| * Port from Java many of the new TLS classes and a few minor changesPeter Dettman2014-04-0625-45/+389
| |
| * Move NullOutputStream to util/ioPeter Dettman2014-04-061-3/+1
| |
| * Remove redundant Mac.Init callsPeter Dettman2014-04-041-3/+1
| |
| * Use the TLS 1.0 PRF for the random blockPeter Dettman2014-04-047-3/+118
| |
| * Optimize Curve25519 point operationsPeter Dettman2014-03-212-111/+214
| |
| * Port of latest Curve25519 stuff from Java buildPeter Dettman2014-03-176-24/+670
| |
| * Take advantage of GLV (when available) in sum-of-multiplies methodsPeter Dettman2014-03-141-7/+89
| |
| * Optimize squaring by inlining the ShiftUpBitPeter Dettman2014-03-143-118/+262
| |
| * GlvMultiplier.cs missed in last commitPeter Dettman2014-03-141-0/+40
| |
| * Port GLV implementation from JavaPeter Dettman2014-03-1312-18/+404
| |
| * Fix bug in DoFinal introduced by last changePeter Dettman2014-03-131-18/+25
| |
| * Add ScaleX, ScaleY methods to ECPointPeter Dettman2014-03-131-0/+74
| |
| * Add new CreateRawPoint method on ECCurve that includes the Z coordsPeter Dettman2014-03-139-0/+52
| |
| * All subclasses to control the choice of width to usePeter Dettman2014-03-121-2/+6
| |
| * Allow subclasses to override the ECMultiplier used for base-point multiplicationPeter Dettman2014-03-123-8/+21
| |
| * Add new methodPeter Dettman2014-03-121-0/+9
| |
| * Optimization (faster at all input lengths, but especially for long ↵Peter Dettman2014-03-111-17/+39
| | | | | | | | block-aligned inputs)
| * Optimize some of the addition/doubling internalsPeter Dettman2014-03-108-92/+114
| |
| * Add MultiplyAddToExt method to fieldsPeter Dettman2014-03-106-2/+71
| |
| * Refactor temporary variables in reductionsPeter Dettman2014-03-103-28/+30
| |
| * Inline Reduce32 calls and registerize some values to avoid extra writesPeter Dettman2014-03-102-12/+53
| |
| * Use more specific Nat methodsPeter Dettman2014-03-101-2/+2
| |
| * Minor improvement to reduction release-1.8.0-beta.2Peter Dettman2014-03-063-9/+15
| |
| * Avoid redundant subtractionPeter Dettman2014-03-061-43/+43
| |
| * Improved reductionPeter Dettman2014-03-054-63/+101
| |
| * Reduction optimization for secp256r1Peter Dettman2014-03-051-5/+73
| |
| * Use Nat methods instead of specific Nat*.*Ext methodsPeter Dettman2014-03-0510-84/+44
| | | | | | | | Reduction improvements in curve25519 and secp256r1
| * Fix infinite loop issue when there is no sqrtPeter Dettman2014-03-041-30/+55
| | | | | | | | Add test case to check that Sqrt returns null for non-squares
| * Remove some length-specific methods in favour of the Nat classPeter Dettman2014-03-0412-558/+487
| | | | | | | | | | Add more method variations to Nat Use customized reductions in various fields
| * Just use shift methods from Nat class evverywherePeter Dettman2014-03-0410-271/+25
| |
| * Refactoring in the Nat* classes and some new method variationsPeter Dettman2014-03-0315-187/+634
| | | | | | | | Improved reduction in some fields
| * Share single temp variable across calls in Sqrt()Peter Dettman2014-03-031-10/+9
| |
| * Refactor reduction methods and change scope of PExt fieldsPeter Dettman2014-03-037-115/+103
| |
| * Add/rename MulAddTo variationsPeter Dettman2014-03-033-2/+167
| |
| * Allow for (very rare) cases where the Sqrt() algorithm needs to retryPeter Dettman2014-03-021-36/+40
| |
| * Avoid a few negations in Sqrt()Peter Dettman2014-02-281-7/+8
| |
| * Optimized Sqrt() for custom secp224r1Peter Dettman2014-02-272-2/+112
| |
| * Equality/hashcode should ignore "excess" wordsPeter Dettman2014-02-2712-23/+107
| |
| * Optimize Sqrt() for custom secp384r1Peter Dettman2014-02-271-2/+56
| |
| * Optimize final adjustments in Reduce()Peter Dettman2014-02-271-13/+4
| |
| * Simplify Twice()Peter Dettman2014-02-271-7/+3
| |
| * Add custom curve for secp384r1 (P-384)Peter Dettman2014-02-276-0/+833
| |
| * Optimize final adjustments in Reduce()Peter Dettman2014-02-271-11/+8
| |
| * Round out the Nat192 methodsPeter Dettman2014-02-267-20/+275
| | | | | | | | Use Nat*.Copy methods in fields
| * Add extra arg to AddWord() and add variant of Copy()Peter Dettman2014-02-262-6/+12
| |
| * Optimization for custom curve reduction when only a few bits need reducing; ↵Peter Dettman2014-02-2615-30/+205
| | | | | | | | used to delay reduction in point doubling.
| * Optimize Sqrt() for custom curve secp224k1Peter Dettman2014-02-261-2/+87
| |
| * Refactoring in Sqrt()Peter Dettman2014-02-261-14/+6
| |
| * Add custom curve for secp224k1Peter Dettman2014-02-265-0/+697
| |
| * Special handling for zero-valued scalarsPeter Dettman2014-02-261-20/+38
| | | | | | | | Some optimizations for NAF generation
| * Refactoring in Sqrt()Peter Dettman2014-02-251-13/+12
| |
| * Add custom curve for secp224r1 (P-224)Peter Dettman2014-02-256-0/+2003
| |
| * Tabs -> spacesPeter Dettman2014-02-251-4/+4
| |
| * Port some openpgp updates from Java build for secret keysPeter Dettman2014-02-253-206/+262
| |
| * Implement the 8m + 5 case from Pocklington's sqrt algorithm (seems to be ↵Peter Dettman2014-02-251-7/+45
| | | | | | | | only used by secp224k1)
| * Refactoring in Nat* classesPeter Dettman2014-02-246-101/+99
| |
| * Tabs -> spacesPeter Dettman2014-02-191-372/+372
| |
| * [BMA-87]Peter Dettman2014-02-191-8/+19
| | | | | | | | Fix for UTC-type GeneralizedTime instances
| * Tabs -> spacesPeter Dettman2014-02-191-168/+168
| |
| * Use ToBigInteger() for A/B comparison in curve equalityPeter Dettman2014-02-191-4/+4
| |
| * Changes to build system in preparation for beta release release-1.8.0-beta.1Peter Dettman2014-02-181-1/+1
| |
| * Fix encoding... againPeter Dettman2014-02-181-0/+0
| |
| * Convert to UTF-8 (thanks Jeff Stedfast)Peter Dettman2014-02-181-0/+0
| |
| * Delete old commented-out codePeter Dettman2014-02-091-476/+0
| |
| * Provide SumOfMultiplies as an arbitrary-length generalization of ↵Peter Dettman2014-02-091-0/+91
| | | | | | | | SumOfTwoMultiplies
| * Update encoders from Java version, including catching invalid data instead ↵Peter Dettman2014-02-072-418/+448
| | | | | | | | of ignoring it
| * Fix casts to satisfy .NET 1.1Peter Dettman2014-02-071-2/+2
| |
| * Fix dodgy character in curve seedPeter Dettman2014-02-071-1/+1
| |
| * Use parallel wNAF for sumOfTwoMultipliesPeter Dettman2014-02-071-4/+69
| |
| * Small optimization for width 4Peter Dettman2014-02-071-17/+19
| |
| * Index precomputation info by namePeter Dettman2014-02-075-14/+36
| |
| * Update OCB draft referencesPeter Dettman2014-02-071-1/+1
| |
| * Use FixedPointCombMultiplier for most base-point multiplicationsPeter Dettman2014-02-062-15/+16
| |
| * Fix incomplete portPeter Dettman2014-02-061-1/+1
| |
| * Use fixed-point comb for multiplying by the base-pointPeter Dettman2014-02-061-13/+11
| |
| * A few improvements to the fixed-point combPeter Dettman2014-02-062-10/+28
| |
| * Initial work on the Curve25519 field implementationPeter Dettman2014-02-063-19/+299
| |
| * Add order/cofactor to Fp curvesPeter Dettman2014-02-044-460/+543
| |
| * Initial work on a fixed-point comb multiplierPeter Dettman2014-02-043-0/+126
| |
| * For repeated doublings, use jacobian-modified coordinates internally ↵Peter Dettman2014-02-041-1/+83
| | | | | | | | irrespective of curve coordinates
| * Implement Karatsuba multiply/square on 512-bit numbers and use as basis for ↵Peter Dettman2014-02-034-63/+577
| | | | | | | | P-521 multiply/square
| * Minor optimization for secp521r1 point doublingPeter Dettman2014-02-023-5/+48
| |
| * Bring OCB test vectors up-to-date with draft v06Peter Dettman2014-02-021-1/+5
| |
| * Add custom curve for secp521r1 (P-521)Peter Dettman2014-02-018-109/+757
| |
| * Add support for delayed modular reductionPeter Dettman2014-02-013-35/+314
| |
| * ReformattingPeter Dettman2014-02-011-2/+0
| |
| * ReformatPeter Dettman2014-02-013-6/+0
| |
| * Fix IncExtPeter Dettman2014-02-011-1/+1
| |
| * Rename locals in Reduce() methodsPeter Dettman2014-02-012-33/+33
| |
| * Optimize Reduce() methodPeter Dettman2014-02-011-8/+16
| |
| * Optimize Reduce() methodPeter Dettman2014-02-011-6/+17
| |
| * Fix Nat*.Gte methodsPeter Dettman2014-02-013-6/+6
| |
| * Make Dec/Inc/IncExt methods work at the full length and change assertions ↵Peter Dettman2014-01-313-57/+55
| | | | | | | | accordingly
| * Avoid modifying the input to the Reduce() methodsPeter Dettman2014-01-314-50/+48
| |
| * Improve reduction speed for secp192k1 and secp256k1 custom fieldsPeter Dettman2014-01-314-16/+126
| |
| * Add custom curves for secp192k1 and secp192r1 (P-192)Peter Dettman2014-01-3110-0/+2214
| |
| * RefactoringPeter Dettman2014-01-315-10/+8
| |
| * Unroll MulWordAddExtPeter Dettman2014-01-311-8/+24
| |
| * Use BigInteger.One instead of BigInteger.ValueOf(1)Peter Dettman2014-01-311-25/+25
| |
| * Fix final step of Reduce()Peter Dettman2014-01-301-10/+9
| |
| * Fix GetBit range-checkPeter Dettman2014-01-301-1/+1
| |
| * FormattingPeter Dettman2014-01-301-10/+0
| |
| * Take advantage of special prime modulus to optimize sqrtPeter Dettman2014-01-302-4/+107
| |
| * Add SquareN to perform repeated modular squaringPeter Dettman2014-01-302-0/+30
| |
| * Cleanup various warnings, and reformattingPeter Dettman2014-01-299-853/+848
| |
| * Update copyrights and add missing Inc.Peter Dettman2014-01-281-2/+2
| |
| * Remove unnecessary using statementPeter Dettman2014-01-281-2/+0
| |
| * Several optimizations and make notes of possible delayed reductionsPeter Dettman2014-01-281-17/+28
| |
| * RefactoringPeter Dettman2014-01-281-2/+1
| |
| * Avoid division when decompressing a lambda-projective pointPeter Dettman2014-01-281-9/+5
| |
| * Implement multi-squaring in-place and use for F2m sqrt()Peter Dettman2014-01-282-40/+39
| |
| * Fix and re-enable twicePlus for lambda-projective coordinatesPeter Dettman2014-01-281-59/+73
| |
| * Port point-detaching stuff from JavaPeter Dettman2014-01-283-0/+27
| |
| * Port from Java order/cofactor for all curvesPeter Dettman2014-01-284-41/+52
| |
| * Port of latest EC multipliers from JavaPeter Dettman2014-01-2713-43/+255
| |
| * Use custom curve if availablePeter Dettman2014-01-262-28/+10
| |
| * FormattingPeter Dettman2014-01-262-359/+359
| |
| * When OCB is used with incrementing nonces, the cipher processing during ↵Peter Dettman2014-01-261-22/+35
| | | | | | | | initialization is only needed once every 64 inits.
| * Make class internalPeter Dettman2014-01-261-1/+1
| |
| * Port custom curve for secp256r1 from JavaPeter Dettman2014-01-265-1/+738
| |
| * Tidy up commentsPeter Dettman2014-01-262-6/+2
| |
| * Port custom curve for secp256k1 from JavaPeter Dettman2014-01-266-15/+1474
| |
| * Add methods working with uint[]Peter Dettman2014-01-261-2/+44
| |
| * Add diagnosticsPeter Dettman2014-01-261-37/+42
| |
| * Fix coord access in Negate()Peter Dettman2014-01-261-36/+8
| | | | | | | | Reformatting
| * Refactor DecompressPointPeter Dettman2014-01-261-8/+3
| |
| * Port of jacobian/-modified coordinates from JavaPeter Dettman2014-01-262-69/+354
| | | | | | | | Make jacobian-modified the default coordinates for Fp
| * Make Barrett reduction available for more prime moduliPeter Dettman2014-01-261-12/+6
| |
| * Adjust first-digit optimization to not be so conservativePeter Dettman2014-01-261-12/+7
| |
| * Port latest Java fixes for lambda-projective and make it the default for F2mPeter Dettman2014-01-252-68/+92
| |
| * Implement Sqrt in F2mPeter Dettman2014-01-251-1/+9
| |
| * Add 0 guard in ModInversePeter Dettman2014-01-251-0/+4
| |
| * Implement homogeneous and lambda-projective coordinate systems in F2m curvesPeter Dettman2014-01-252-67/+428
| |
| * Port of AddOne method(s) from JavaPeter Dettman2014-01-251-0/+16
| |
| * Use AesEngine by defaultPeter Dettman2014-01-251-3/+8
| |
| * FormattingPeter Dettman2014-01-241-66/+66
| |
| * Some more EC point normalizationPeter Dettman2014-01-245-103/+102
| |
| * Default to COORD_HOMOGENEOUS for FpPeter Dettman2014-01-241-1/+1
| |
| * Implement very basic Barrett reduction as alternative to very slow ↵Peter Dettman2014-01-241-19/+41
| | | | | | | | BigInteger.Mod
| * Implementation of homogeneous coordinates for FpPeter Dettman2014-01-2412-1314/+1676
| | | | | | | | | | Various changes to point methods to deal with non-affine points Changes in client code and tests to apply point normalization
| * Optimization in ModReducePeter Dettman2014-01-241-3/+6
| |
| * Track carries for a, b to avoid unnecessary add/sub of prime modulusPeter Dettman2014-01-241-17/+42
| |
| * Fix return type in SubFromExtPeter Dettman2014-01-241-4/+4
| |
| * Make class abstractPeter Dettman2014-01-241-32/+24
| |
| * Track uvLen to reduce shifting for small operandsPeter Dettman2014-01-241-9/+18
| |
| * Move methodPeter Dettman2014-01-241-16/+16
| |
| * Port of several interrelated things from Java build:Peter Dettman2014-01-2311-578/+1056
| | | | | | | | | | | | | | | | - Z coordinates for points - More point normalization code - Curve management of point precomp info - Add WNafUtilities and use in multipliers/ECAlgorithms - Make various fields/classes protected/public
| * Use ImportPoint to make sure points are on same curvePeter Dettman2014-01-231-15/+49
| | | | | | | | Add MontgomeryTrick method
| * FormattingPeter Dettman2014-01-231-45/+45
| |
| * Use residue-based reduction for more curves, in particular P-256Peter Dettman2014-01-231-2/+8
| |
| * Add Nat/Mod classes and use instead of (slow) BigInteger.ModInverse ↵Peter Dettman2014-01-234-495/+636
| | | | | | | | implementation for FpFieldElement
| * Avoid unnecessary multiplication in final ExtEuclid iterationPeter Dettman2014-01-231-32/+16
| |
| * Add foundations for supporting other coordinate systemsPeter Dettman2014-01-222-85/+226
| | | | | | | | | | Add curve configuration Multipliers now live on the curve instead of points
| * Make publicPeter Dettman2014-01-222-2/+2
| |
| * Override methods to optimize for LongArrayPeter Dettman2014-01-221-0/+20
| |
| * Use new Math.Field classes in EC curves, and avoid casting in client codePeter Dettman2014-01-225-349/+385
| |
| * Implement TwicePlus optimization in Fp curvesPeter Dettman2014-01-223-312/+439
| |
| * Port LongArray from Java and use in F2mFieldElementPeter Dettman2014-01-223-157/+2086
| |
| * BMA-119Peter Dettman2014-01-211-601/+496
| | | | | | | | | | Make GetValueList methods consistent Remove obsolete X509Name methods
| * Fix up openssl test casesPeter Dettman2014-01-211-353/+353
| |
| * Remove DerUnknownTag classPeter Dettman2014-01-211-80/+0
| |
| * Stop using DerUnknownTag (throw exceptions during parsing instead)Peter Dettman2014-01-213-463/+457
| |
| * BMA-118Peter Dettman2014-01-211-95/+88
| | | | | | | | Handle null properly in AuthorityInformationAccess.GetInstance
| * ReformatPeter Dettman2014-01-211-44/+42
| |
| * BMA-116Peter Dettman2014-01-213-249/+266
| | | | | | | | Update some Asn1.X509 classes from Java
| * Fix Equals methodsPeter Dettman2014-01-212-27/+28
| |
| * Add new files to project, rename Sm3 to SM3Peter Dettman2014-01-211-8/+8
| |
| * Fix up mergePeter Dettman2014-01-212-12/+29
| |
| * Merge branch 'feature/threefish-skein-memoable-sm3' of ↵Peter Dettman2014-01-2130-75/+3708
| |\ | | | | | | | | | | | | | | | | | | | | | git://github.com/timw/bc-csharp into timw-feature/threefish-skein-memoable-sm3 Conflicts: crypto/crypto.mdp crypto/src/util/Arrays.cs
| | * Port HMac optimisation using Memoable digests from bc-java.Tim Whittington2013-10-201-7/+37
| | |
| | * Port SM3 digest implementation and tests from bc-java.Tim Whittington2013-10-201-0/+328
| | |
| | * Port Memoable digest support from bc-java.Tim Whittington2013-10-2023-94/+492
| | |
| | * Port SkeinDigest and SkeinMac from bc-java.Tim Whittington2013-10-205-0/+1362
| | | | | | | | | | | | Skein digest and Mac in 256/512/1024 bit state sizes (and arbitrary byte level output size), with unit tests.
| | * Port of Threefish implementation from bc-java.Tim Whittington2013-10-202-0/+1531
| | | | | | | | | | | | All block sizes (256/5124/1024) and unit tests.
| * | Merge branch 'pkix-validator-throw' of git://github.com/jstedfast/bc-csharp ↵Peter2014-01-211-5/+5
| |\ \ | | | | | | | | | | | | into jstedfast-pkix-validator-throw
| | * | Need to throw the new exceptions rather than leaving them to fall into the voidJeffrey Stedfast2013-11-241-5/+5
| | | |
| * | | Add new classes in Math.Field and some other EC-related stuff from JavaPeter Dettman2014-01-2111-0/+485
| | | |
| * | | FormattingPeter Dettman2014-01-211-714/+714
| | | |
| * | | FormattingPeter Dettman2014-01-211-1173/+1173
| | | |
| * | | Make typed Equals methods public (and virtual)Peter Dettman2014-01-211-3/+3
| | | |
| * | | Merge branch 'master' of git.bouncycastle.org:bc-csharpPeter Dettman2014-01-212-13/+25
| |\ \ \
| | * | | added Camellia tagsDavid Hook2014-01-151-2/+11
| | | | |
| | * | | added Camellia tagsDavid Hook2014-01-151-11/+14
| | | | |
| * | | | Make static utility classes abstract instead of sealedPeter Dettman2014-01-216-298/+288
| | | | | | | | | | | | | | | | | | | | | | | | | Add Arrays.GetHashCode for int[] Formatting
| * | | | Bring Fp field element code mostly up-to-date with Java versionPeter Dettman2014-01-212-778/+800
| | | | |
| * | | | Fix XML commentsPeter Dettman2014-01-212-5/+5
| |/ / /
| * | | Registerize top accumulator word in Montgomery multiplication/squaringPeter Dettman2014-01-031-6/+12
| | | |
| * | | Fix tabsPeter Dettman2014-01-031-2128/+2128
| | | |
| * | | Make date format consistent with Java testsPeter Dettman2013-12-292-8/+8
| | | |
| * | | Use Platform.ToUpperInvariantPeter Dettman2013-12-181-1/+1
| | | |
| * | | Port of PrfAlgorithm and ProtocolVersion from Java TLSPeter Dettman2013-12-182-0/+184
| | | |
| * | | Factor out variation of MacUtilities.DoFinalPeter Dettman2013-12-182-4/+8
| | | |
| * | | Clean up all the special handling for IDEA stuff, back to a single release ↵Peter Dettman2013-12-175-43/+22
| | | | | | | | | | | | | | | | assembly.
| * | | More porting from Java TLS, mainly enum replacementPeter Dettman2013-12-1728-821/+1100
| | | |
| * | | A round of porting from Java TLSPeter Dettman2013-12-1727-1188/+1728
| | | |
| * | | Add methods for converting from BC RSAPrivateKeyStructurePeter Dettman2013-12-071-13/+34
| | | |
| * | | Use Negate() to simplifyPeter Dettman2013-12-051-1/+1
| | | |
| * | | Add ECFieldElement.GetEncoded() methodPeter Dettman2013-12-051-2/+7
| | | |
| * | | Always apply sign guardPeter Dettman2013-12-031-4/+4
| |/ /
| * | Use 1/n-1 record splitting instead of 0/nPeter Dettman2013-11-201-13/+24
| | |
| * | Auto-initialize random if necessaryPeter Dettman2013-11-111-0/+5
| | |
| * | Don't require there to be any digests, to allow in particular for a ↵Peter Dettman2013-11-101-5/+0
| | | | | | | | | | | | certs-only SignedData
| * | Port from Java of improvements to DerBoolean and DerEnumeratedPeter Dettman2013-11-033-61/+97
| | |
| * | Fix commentsPeter Dettman2013-11-021-4/+5
| | |
| * | Merge branch 'feature/poly1305' of git://github.com/timw/bc-csharpPeter Dettman2013-11-022-0/+394
| |\ \ | | | | | | | | | | | | | | | | Conflicts: crypto/crypto.mdp
| | * | Port Poly1305 Mac implementation and tests from bc-java.Tim Whittington2013-10-202-0/+394
| | |/
| * | Clone bytes in constructor since it may be using a temp buffer in the ASN.1 ↵Peter Dettman2013-11-011-1/+1
| | | | | | | | | | | | parser
| * | Minor edit to commentPeter Dettman2013-11-011-1/+1
| | |
| * | Merge branch 'feature/gmac' of git://github.com/timw/bc-csharpPeter Dettman2013-11-014-0/+124
| |\ \ | | | | | | | | | | | | | | | | Conflicts: crypto/crypto.mdp
| | * | Port GMac implementation and tests from bc-java.Tim Whittington2013-10-204-0/+124
| | |/
| * | Fix length in ShiftLeftPeter Dettman2013-11-011-1/+1
| | |
| * | Restore dodgy filePeter Dettman2013-11-011-0/+0
| | |
| * | Remove dodgy filePeter Dettman2013-11-011-0/+0
| | |
| * | Use xmldoc for documentation of Salsa20/XSalsa20/ChaChaTim Whittington2013-10-193-45/+37
| | |
| * | Make ChaCha and Salsa20 engines CLSCompliant.Tim Whittington2013-10-182-7/+5
| | |
| * | Port reduced round Salsa20, registerised Salsa20 core, XSalsa20 and ChaCha ↵Tim Whittington2013-10-103-91/+434
| |/ | | | | | | from bc-java.
| * fixed line endingsDavid Hook2013-08-071-0/+0
| |
| * Don't ignore the input offset argumentPeter Dettman2013-07-311-3/+3
| |
| * Attempt to perform doubling operation in constant timePeter Dettman2013-07-101-13/+23
| |
| * Guard against passing IV thru CMacPeter Dettman2013-07-071-220/+226
| |
| * Initial import of old CVS repositoryPeter Dettman2013-06-281133-0/+161568
|
* rename Crypto dir to crypto to match bc-gitOren Novotny2014-08-26752-87063/+0
|
* Add BouncyCastle PCL filesOren Novotny2014-02-261122-0/+158139