summary refs log tree commit diff
path: root/crypto/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Records with ContentType.heartbeat should give 'unexpected_message'Peter Dettman2017-03-222-17/+13
| | | | | | | | - Heartbeat support currently incomplete (never negotiated)
* | Add TlsProtocol.CloseInput for use in non-blocking modePeter Dettman2017-03-221-3/+40
| | | | | | | | - tighten up handling of closure during handshake
* | Non-blocking TLS validates header of partially-received recordsPeter Dettman2017-03-222-5/+59
| | | | | | | | - https://github.com/bcgit/bc-java/issues/133
* | Use new TlsNoCloseNotifyException instead of generic EndOfStreamExceptionPeter Dettman2017-03-222-3/+20
| | | | | | | | | | - New exception only used for this specific case, which should simplify the handling of possible truncations in application code.
* | Simple refactoring to follow bc-java codePeter Dettman2017-03-226-10/+15
| |
* | Change TLS server default DH parameters to 2048-bit group from RFC 3526Peter Dettman2017-03-222-2/+2
| |
* | Added support for empty sequencesPeter Dettman2017-03-221-0/+8
| |
* | BJA-620 followup for Poly1305Peter Dettman2017-03-221-17/+15
| | | | | | | | | | - bug not present in C#, but include test case - conservatively added an extra step in carry propagation
* | Fixed N4 calculation issue - see BJA-655David Hook2017-03-071-1/+5
| |
* | Fix bug in SecT571KPoint.Add with order-2 points (lambda-projective).Peter Dettman2017-02-171-1/+1
| | | | | | | | - shouldn't affect crypto operations in the group
* | Clean up old comments in binary custom curve codePeter Dettman2017-02-1711-73/+6
| |
* | Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.gitDavid Hook2016-12-2843-273/+787
|\ \
| * | Fix carry propagation bug in Nat???.Square methodsPeter Dettman2016-11-305-60/+60
| | |
| * | After receiving fatal alert, don't echo that alert to peer (from bc-java)Peter Dettman2016-11-143-7/+55
| | | | | | | | | | | | | | | - https://github.com/bcgit/bc-java/issues/148 - also explicitly invalidate session after fatal alert
| * | EncryptionAlgorithm.NULL is a 'stream' cipherPeter Dettman2016-11-111-0/+1
| | |
| * | Fix possible NPE when cofactor != 1 (from bc-java)Peter Dettman2016-11-101-1/+1
| | |
| * | Throw excepton on unknown tagPeter Dettman2016-10-281-0/+2
| | |
| * | Improve ZInputStream/ZOutputStream constructorsPeter Dettman2016-05-262-15/+60
| | |
| * | removed obsolete annotationDavid Hook2016-05-153-6/+0
| | |
| * | Add CertificateType constants to (D)TLSPeter Dettman2016-05-071-0/+18
| | |
| * | Port of improved app data splitting support from JavaPeter Dettman2016-05-071-6/+35
| | |
| * | Update ECDomainParameters GetHashCodePeter Dettman2016-05-071-4/+8
| | |
| * | Support GetInstance from byte[]Peter Dettman2016-04-291-0/+11
| | |
| * | Added IsCertification methods.Peter Dettman2016-04-291-0/+25
| | |
| * | Port of HKDF from Java APIPeter Dettman2016-04-292-0/+272
| | |
| * | Fix XML commentPeter Dettman2016-04-291-2/+2
| | |
| * | Update various parameter classes following Java APIPeter Dettman2016-04-299-28/+61
| | |
| * | Update to draft-zauner-tls-aes-ocb-04Peter Dettman2016-04-216-29/+57
| | |
| * | Minor change to error messagesPeter Dettman2016-04-201-16/+6
| | |
| * | Update Poly1305 to comply with RFC 7539Peter Dettman2016-04-203-88/+58
| | |
| * | Put zero-length extensions first in the ClientHelloPeter Dettman2016-03-251-8/+20
| | |
| * | Prefer high bits for powers-of-twoPeter Dettman2016-03-101-2/+6
| | |
| * | Implement unique name_type restriction from RFC 6066Peter Dettman2016-03-102-2/+30
| | |
* | | fixed head of loop to use primitive type.David Hook2016-12-281-1/+3
|/ /
* | BMA-147 Support ECDH_anon key exchange in (D)TLSPeter Dettman2016-03-014-37/+88
| |
* | fixed zero length message bugDavid Hook2016-02-151-1/+1
| |
* | fixed sign on BigInteger creationDavid Hook2016-02-131-1/+1
|/
* Added support for repeated requests for output to Xof.David Hook2016-02-073-13/+32
|
* Port bcrypt from Java APIPeter Dettman2016-02-032-0/+887
| | | | - Requested in BMA-143
* Implement RFC 7685 in TLSPeter Dettman2016-02-034-0/+45
|
* Add various ExtensionType valuesPeter Dettman2016-02-031-4/+47
|
* Additional temp values in reductionPeter Dettman2016-02-022-6/+8
|
* Just check the final ReadByte return valuePeter Dettman2016-02-021-15/+3
|
* Add DTLS-SRTP protection profiles from RFC 7714Peter Dettman2016-01-181-0/+6
|
* Initial cut of draft-zauner-tls-aes-ocb-03Peter Dettman2016-01-178-23/+179
|
* draft-ietf-tls-downgrade-scsv => RFC 7507Peter Dettman2016-01-176-22/+24
|
* Implement updated draft-ietf-tls-chacha20-poly1305-04Peter Dettman2016-01-1711-66/+241
|
* Support for re-init in Salsa familyPeter Dettman2016-01-174-115/+93
| | | | | - simplify SetKey methods - avoid non-private mutable static state (sigma/tau)
* Fix re-init bug in HC128/256 enginesPeter Dettman2016-01-172-3/+3
| | | | - add StreamCipherResetTest from Java API
* Remove expired draft-josefsson-salsa20-tls stuffPeter Dettman2016-01-177-127/+1
|
* counter needs to based on maxlen(p) as tag done on J0David Hook2016-01-151-2/+2
|
* reversed incorrect fixDavid Hook2016-01-141-2/+2
|
* update to blocksRemainingDavid Hook2016-01-141-2/+2
|
* Remove unused importPeter Dettman2016-01-121-1/+0
|
* Add block limit to GCMPeter Dettman2016-01-121-0/+8
|
* Update versions and release notes for release 1.8.1 release-1.8.1Peter Dettman2015-12-281-3/+3
|
* Add a couple more OIDsPeter Dettman2015-12-281-5/+7
|
* Add IdRsaKemPeter Dettman2015-12-281-6/+21
|
* Various ASN.1 updates from Java APIPeter Dettman2015-12-287-11/+234
|
* Clean up a few warningsPeter Dettman2015-12-282-7/+5
|
* Optimized Sqrt and Trace for custom binary curvesPeter Dettman2015-12-2819-9/+314
|
* XML doc for TlsClient.ClientHelloRecordLayerVersionPeter Dettman2015-12-282-9/+14
|
* Fix VmpcMac to actually use offset in BlockUpdate()Peter Dettman2015-12-251-1/+1
| | | | - https://github.com/bcgit/bc-java/issues/127
* Merge branch 'master' of git.bouncycastle.org:bc-csharpPeter Dettman2015-12-212-9/+57
|\
| * Added use of standard salt if provided.David Hook2015-12-191-1/+8
| |
| * Added test against fixed salt.David Hook2015-12-191-1/+10
| |
| * Added support for fixed salt.David Hook2015-12-191-7/+39
| |
* | BJA-584 Fix DTLS record-layer version handlingPeter Dettman2015-12-213-19/+34
|/ | | | - Also https://github.com/bcgit/bc-java/pull/111
* Check CertificateRequest syntax server-sidePeter Dettman2015-12-182-0/+6
|
* Validate ServerKeyExchange signature algorithm (TLS 1.2+)Peter Dettman2015-12-164-3/+14
| | | | | | - check the algorithm is in signature_algorithms (or the implicit defaults if that extension was not sent) - add (D)TLS test scenarios to cover these checks
* Validate CertificateVerify signature algorithm (TLS 1.2+)Peter Dettman2015-12-165-20/+92
| | | | | - check the algorithm is in the CertificateRequest list - add (D)TLS test scenarios for various failure modes
* More release preparationPeter Dettman2015-11-221-1/+3
|
* Add NonMemoableDigest and testsPeter Dettman2015-11-221-0/+62
|
* Add Platform method for getting the type name of an objectPeter Dettman2015-11-21252-333/+559
|
* Factor out IsEnumType methodPeter Dettman2015-11-211-10/+11
|
* RefactoringPeter Dettman2015-11-211-5/+11
|
* Add Threefish entries to factories to get tests passingPeter Dettman2015-11-213-5/+25
|
* BMA-52 Fix SerpentEngine byte-orderingPeter Dettman2015-11-216-526/+814
| | | | - The new TnepresEngine was added to retain the historical behaviour of SerpentEngine
* Call NextBytes instead of GenerateSeedPeter Dettman2015-11-201-1/+2
|
* Don't reveal the output size in exception messagePeter Dettman2015-11-201-1/+1
|
* Handle COORD_SKEWED tooPeter Dettman2015-11-191-0/+1
|
* Save an inversion in ECDSA verification for common casesPeter Dettman2015-11-192-2/+67
|
* Move classes up into Org.BC.CryptoPeter Dettman2015-11-182-2/+2
|
* Access entropy source via propertyPeter Dettman2015-11-182-2/+7
|
* Improve usage/behaviour of SecureRandom.GenerateSeedPeter Dettman2015-11-179-27/+122
|
* Port some DES/DESEDE changes from JavaPeter Dettman2015-11-175-33/+76
|
* Add missing lock for PORTABLEPeter Dettman2015-11-171-1/+1
|
* Finish port of latest PRNG/DRBG stuff from JavaPeter Dettman2015-11-1616-430/+1035
|
* Remove redundant semicolonsPeter Dettman2015-11-164-4/+4
|
* More rename/deletePeter Dettman2015-11-161-33/+0
|
* Delete filesPeter Dettman2015-11-162-48/+0
|
* More delete/move/renamePeter Dettman2015-11-166-986/+48
|
* Rename/delete some filesPeter Dettman2015-11-163-103/+0
|
* FIPS DRBG digest/hmac/CTRDavid Hook2015-11-1612-0/+2291
|
* added 4[] ConcatenateDavid Hook2015-11-161-0/+31
|
* added 3[] ConcatenateDavid Hook2015-11-161-0/+22
|
* Check there is no trailing data in Asn1Object.FromByteArrayPeter Dettman2015-11-142-6/+12
|
* Update ECPrivateKeyStructure following Java APIPeter Dettman2015-11-135-29/+83
|
* Obsolete sequence constructor and refactorPeter Dettman2015-11-131-11/+12
|
* Use portable methods for ASCII conversionPeter Dettman2015-11-131-3/+2
|
* Further refinement to random prime constructorPeter Dettman2015-11-131-3/+2
|
* According to RFC 6066, host_name should use ASCII encodingPeter Dettman2015-11-131-6/+7
|
* Fix length checkPeter Dettman2015-11-131-1/+1
|
* added GetInstance methodsDavid Hook2015-11-132-0/+50
|
* Review of culture-independent String comparison methodsPeter Dettman2015-11-1232-146/+165
|
* Refactoring of "unused bits" changesPeter Dettman2015-11-121-19/+17
|
* Use culture-independent prefix-check in MacUtilities.GetMacPeter Dettman2015-11-121-1/+3
| | | | - Fix for https://github.com/bcgit/bc-csharp/pull/40 (modified from original patch)
* Add sanity check on input lengthPeter Dettman2015-11-101-0/+4
|
* Address various compiler warningsPeter Dettman2015-11-1042-83/+84
|
* Fix IV check for 64-bit blockSizePeter Dettman2015-11-101-3/+5
|
* Add BerBitString and improve "unused bit" handlingPeter Dettman2015-11-1022-156/+260
|
* Add more PkiFailureInfo constantsPeter Dettman2015-11-101-45/+69
|
* Improve random prime constructorPeter Dettman2015-11-091-11/+7
|
* Add DOTNET and LIB preprocessor flags as per BouncyCastle-PCLPeter Dettman2015-11-093-4/+4
|
* fixed argument null messageDavid Hook2015-11-091-1/+1
|
* Fix weird characterPeter Dettman2015-11-081-1/+1
|
* Needs to be in Org.BouncyCastle namespace for nowPeter Dettman2015-11-081-1/+1
|
* A few more changes to sync up with BouncyCastle-PCLPeter Dettman2015-11-086-1/+40
|
* Some more PORTABLE updatesPeter Dettman2015-11-083-3/+27
|
* Tighten up the correspondence b/w Close/DisposePeter Dettman2015-11-0819-41/+31
|
* Missed a Close/Dispose changePeter Dettman2015-11-081-5/+4
|
* Use utility method from Enums to avoid platform-specific code herePeter Dettman2015-11-081-1/+1
|
* Update to "Null parameters" behaviour from Java 1.53Peter Dettman2015-11-081-44/+20
|
* AddOptional can take varargsPeter Dettman2015-11-083-6/+3
|
* WhitespacePeter Dettman2015-11-082-2/+2
|
* Oops, fix method namesPeter Dettman2015-11-0428-29/+29
|
* Replace Close with Dispose for PORTABLEPeter Dettman2015-11-0428-69/+485
|
* Remove redundant FlushPeter Dettman2015-11-041-2/+0
|
* Change Close calls to Dispose calls for PORTABLEPeter Dettman2015-11-0450-80/+128
|
* Perform counter increment without branchesPeter Dettman2015-11-031-4/+5
|
* Improve performance of AES key schedulePeter Dettman2015-10-303-93/+310
|
* Rewrite (block) update for improved performancePeter Dettman2015-10-301-15/+21
|
* Use optimized MR rounds only in random-search contextsPeter Dettman2015-10-294-30/+41
|
* Increase number of small factors tested forPeter Dettman2015-10-291-29/+74
|
* Optimize the number of Rabin-Miller rounds used for probable primality testingPeter Dettman2015-10-291-4/+19
|
* Pull a few PORTABLE changes from BouncyCastle-PCL (with fixes)Peter Dettman2015-10-274-89/+151
|
* removed fileDavid Hook2015-10-261-23/+0
|
* Fixed method name on verifier factory classDavid Hook2015-10-246-6/+6
|
* Fixed naming of Asn1 implementationDavid Hook2015-10-243-4/+4
|
* fixed file nameDavid Hook2015-10-241-0/+23
|
* Final naming refactorDavid Hook2015-10-2415-60/+60
|
* comment updateDavid Hook2015-10-243-15/+14
|
* comment updateDavid Hook2015-10-244-19/+19
|
* comment updateDavid Hook2015-10-241-1/+1
|
* renamed ISignatureCalculator to ISignatureCalculatorFactoryDavid Hook2015-10-2410-41/+41
|
* Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.gitDavid Hook2015-10-221-13/+12
|\
| * Fix faulty constructor and refactorPeter Dettman2015-10-221-13/+12
| |
* | Changed name of Value() to Collect()David Hook2015-10-229-12/+12
|/
* Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.gitDavid Hook2015-10-212-12/+0
|\
| * Remove inapplicable comments in key generatorsPeter Dettman2015-10-212-12/+0
| |
* | Added missed files on IBlockResult changeDavid Hook2015-10-212-3/+3
|/
* Renamed DoFinal to Value on IBlockResult.David Hook2015-10-217-9/+9
|
* SigOutputStream removed from the other-platform path too.Peter Dettman2015-10-181-1/+1
|
* PCL: No support for FileInfo/FileStreamPeter Dettman2015-10-183-0/+6
|
* http://www.bouncycastle.org/jira/browse/BMA-98Peter Dettman2015-10-183-21/+109
| | | | | - Support v3 encryption - Port more rewrap tests from Java API
* Remove the 'debug' logging from NaccacheSternPeter Dettman2015-10-183-176/+34
|
* PCL: Various non-IO changesPeter Dettman2015-10-1830-46/+91
|
* No SerializableAttribute in PCLPeter Dettman2015-10-1840-40/+40
|
* Merge branch 'master' of git.bouncycastle.org:bc-csharpPeter Dettman2015-10-181-39/+34
|\
| * BMA-132 added support for ISignatureCalculator interfaceDavid Hook2015-10-181-39/+34
| |
* | More SIC changes for consistency with Java APIPeter Dettman2015-10-181-4/+6
| |
* | http://www.bouncycastle.org/jira/browse/BMA-82Peter Dettman2015-10-184-7/+13
|/ | | | - use SecureRandom to generate "arbitrary" values
* http://www.bouncycastle.org/jira/browse/BMA-113Peter Dettman2015-10-184-25/+17
| | | | - Convert DateTime to string using InvariantCulture
* http://www.bouncycastle.org/jira/browse/BMA-128Peter Dettman2015-10-182-2/+2
| | | | - Cater for future X.509 versions
* Followups for the SicBlockCipher changesPeter Dettman2015-10-181-3/+4
|
* Add CalculateMac utility methodPeter Dettman2015-10-181-0/+8
|
* Switch to Strings.ToByteArray as is used in the Java APIPeter Dettman2015-10-181-2/+2
|
* SIC renamed to CTR, minimum IV length check addedPeter Dettman2015-10-181-24/+24
|
* http://www.bouncycastle.org/jira/browse/BMA-90Peter Dettman2015-10-184-29/+24
| | | | | - Make CmsReadable public - Make a few methods virtual
* https://github.com/bcgit/bc-csharp/issues/37Peter Dettman2015-10-175-73/+567
| | | | - Add alternative PGP methods involving passphrases to support UTF8 or caller-defined encodings
* Fix various warnings from recent commitsPeter Dettman2015-10-176-33/+33
|
* Fix case of JPAKE filenamesPeter Dettman2015-10-176-0/+0
|
* Merge branch 'master' into avanpo-masterPeter Dettman2015-10-171-1/+1
|\
| * Can't use var keyword in .NET 1.1Peter Dettman2015-10-171-1/+1
| |
* | Various JPAKE changes to fit existing code conventionsPeter Dettman2015-10-177-224/+178
| | | | | | | | | | - Update project file with new entries - Tests moved to crypto/agreement/test
* | Merge branch 'master' of https://github.com/avanpo/bc-csharp into avanpo-masterPeter Dettman2015-10-177-0/+1327
|\ \ | |/ |/|
| * more commenting fixesAlex van Poppelen2015-10-171-8/+10
| |
| * cleaned up commenting a bitAlex van Poppelen2015-10-172-316/+263
| |
| * ported jpake library and tests from javaAlex van Poppelen2015-10-177-0/+1378
| |
* | Fix whitespace and remove Dispose methodPeter Dettman2015-10-172-93/+53
| |
* | Merge branch 'keyhasing' of https://github.com/darkoperator/bc-csharp into ↵Peter Dettman2015-10-174-6/+195
|\ \ | | | | | | | | | darkoperator-keyhasing
| * | Add support to specifying Hash Algo when adding a subkey and generating a ↵Carlos Perez2014-06-084-6/+195
| | | | | | | | | | | | | | | | | | keyring. DSA2 and in the future EC keys requiere hashing higher than SHA1.
* | | Merge branch 'master' of bcgit@git.bouncycastle.org:bc-csharp.gitDavid Hook2015-10-177-32/+413
|\ \ \ | | |/ | |/|
| * | Port of non-blocking TLS API from JavaPeter Dettman2015-10-165-29/+390
| | |
| * | Avoid Interlocked.Increment(Int64) on .NET CFPeter Dettman2015-10-162-3/+23
| | | | | | | | | | | | - https://github.com/bcgit/bc-csharp/issues/20
* | | Initial cut of SignerInfoGenerator for CMSDavid Hook2015-10-171-1/+1
| | |
* | | Initial cut of SignerInfoGeneratorDavid Hook2015-10-175-212/+506
|/ /
* | Further work of signature/verification calculators.David Hook2015-10-1614-232/+430
| | | | | | | | | | Added IBlockResult and IVerifier Added verifier provider verify methods to X.509 PKCS#10 classes.
* | Port latest X9 EC stuff from Java APIPeter Dettman2015-10-148-214/+224
| |
* | Support "CMS" headerPeter Dettman2015-10-141-0/+1
| |
* | Consolidate all F2m decompression methods into AbstractF2mPeter Dettman2015-10-1419-1735/+96
| |
* | Add ECCDH as valid aliasPeter Dettman2015-10-141-5/+5
| |
* | Added "Lenstra" checkPeter Dettman2015-10-141-97/+101
| |
* | Added extra OIDs.David Hook2015-10-141-2/+28
| |
* | Port of latest PGP tests and supporting code changesPeter Dettman2015-10-1236-355/+1205
| |
* | removed bogus imports (old FilterStream)David Hook2015-10-123-84/+87
| | | | | | | | added ISignatureGenerator to Pkcs10.
* | Introduced Utilities.IO.FilterStreamDavid Hook2015-10-124-2/+70
| |
* | Fixed genericsDavid Hook2015-10-128-30/+24
| |
* | Initial cut of signature generation operators.David Hook2015-10-129-117/+717
| |
* | Port of recent ISO trailer updates from JavaPeter Dettman2015-10-024-102/+129
| |
* | Add NIST OIDs and DigestUtilities entries for SHA3Peter Dettman2015-10-012-2/+28
| |
* | Fix class declarationPeter Dettman2015-09-061-1/+1
| |
* | Merge branch 'master' of git.bouncycastle.org:bc-csharpPeter Dettman2015-09-065-551/+1018
|\ \
| * | Port of Keccak, SHA-3, SHAKE from JavaPeter Dettman2015-09-064-506/+699
| | |
| * | Add Miller-Rabin methodsPeter Dettman2015-08-141-45/+319
| | |
* | | Merge branch 'master' of git.bouncycastle.org:bc-csharpPeter Dettman2015-08-1434-116/+2042
|\| | | | | | | | | | | | | | Conflicts: crypto/src/asn1/x9/X9ECParametersHolder.cs
| * | Refactor NextPacketTag()Peter Dettman2015-08-141-11/+7
| | |
| * | Optimize (Inv_)Mcol methods in AES enginesPeter Dettman2015-08-143-20/+55
| | |
| * | Fix 64-bit multiply (not used)Peter Dettman2015-08-142-5/+73
| | | | | | | | | | | | - correct weird shift lengths in 32-bit multiply (no bug)
| * | Use Itoh-Tsujii inversion (with extended bases for some cases)Peter Dettman2015-08-1318-18/+376
| | |
| * | Switch from lookup table to bit twiddlingPeter Dettman2015-08-131-42/+67
| | |
| * | Move lazy initialization under lockPeter Dettman2015-06-261-16/+19
| | |
| * | Latest custom EC updates from Java APIPeter Dettman2015-06-1914-12/+1454
| | |
| * | Merge branch 'master' of https://github.com/FancyFon/bc-csharp into ↵Peter Dettman2015-06-171-3/+1
| |\ \ | | | | | | | | | | | | FancyFon-master
| | * | Changed PkixCertPathChecker Check method signature, so chosen unsupported ↵Marcin Paszylk2015-06-161-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | certificate extensions can be removed from collection in Check method implementation. Change-Id: I2041e4dc7be1b041bbe3a4ff0537be921b1f317b
* | | | Add locking to lazy factory propertyPeter Dettman2015-06-121-6/+9
|/ / /
* | | Performance optimizationPeter Dettman2015-06-121-14/+42
| | |
* | | Improve limit-testing to avoid overflow problemsPeter Dettman2015-06-111-3/+3
| | |
* | | Add new class PrimesPeter Dettman2015-06-111-0/+282
|/ / | | | | | | - Initial implementation of Shawe-Taylor (FIPS 186-4 C.6)
* | Add range checks to F2m field elementsPeter Dettman2015-06-099-8/+11
| |
* | Code cleanupPeter Dettman2015-05-271-59/+69
| |
* | Merge branch 'pkcs5v2sha2' of https://github.com/bartland/bc-csharp into ↵Peter Dettman2015-05-271-13/+59
|\ \ | | | | | | | | | bartland-pkcs5v2sha2
| * | Support (low-level) for non-default PRFs for PKCS5v2bartland2015-04-101-13/+59
| | |
* | | Change default DH group chosen by TLS server to 2048 bitsPeter Dettman2015-05-255-16/+36
| | | | | | | | | | | | TLS client will not accept < 1024 bits DH group by default
* | | Port recent Java updatesPeter Dettman2015-04-188-5/+311
| | |
* | | Remove overly strict check on ECC extensionsPeter Dettman2015-04-111-2/+6
|/ /
* | ValidDays only returns 0 if there is no expiry, and is ObsoletePeter Dettman2015-03-271-21/+26
| | | | | | | | - Thanks to Severin Friede for reporting (see JIRA BMA-127)
* | Improved docs and code cleanupPeter Dettman2015-03-261-46/+11
| |
* | Provide a KeyContainerName when creating an RSACryptoServiceProviderPeter Dettman2015-03-261-1/+3
| | | | | | | | - Thanks to Frederik Carlier for reporting and providing a fix (see JIRA BMA-130)
* | Retain the OID actually used when initialized by keysizePeter Dettman2015-03-261-0/+1
| | | | | | | | - Thanks to Kyle Hamilton for the patch (see bcgit/bc-csharp#16)
* | Added AES, IDEA, and CAST5 CBC S/MIME Capability identifiersJeffrey Stedfast2015-03-261-0/+6
| |
* | F2mCurve cleanupPeter Dettman2015-03-262-5/+29
| |
* | Merge branch 'mpsinfo-duplicatedigest'Peter Dettman2015-03-251-8/+14
|\ \
| * | FormattingPeter Dettman2015-03-251-1/+2
| | |
| * | Merge branch 'duplicatedigest' of https://github.com/mpsinfo/bc-csharp into ↵Peter Dettman2015-03-251-8/+13
| |\ \ | | | | | | | | | | | | mpsinfo-duplicatedigest
| | * | Correct duplicate key exception when more than one signer use the same ↵Carlos Alberto Costa Beppler2015-03-241-8/+13
| | | | | | | | | | | | | | | | digest algorithm.
* | | | Include ANSSI curves in getByOID lookupPeter Dettman2015-03-251-1/+6
| | | |
* | | | Add custom implementations of SEC binary curvesPeter Dettman2015-03-2449-1/+11800
| | | |
* | | | Add GetHashCode methods for ulong[]Peter Dettman2015-03-241-0/+42
| | | |
* | | | Custom curves for secp128r1 and secp160r1/r2/k1Peter Dettman2015-03-2415-32/+2750
|/ / /
* | | F2m changes in preparation for custom binary curvesPeter Dettman2015-03-235-376/+354
| | |
* | | Fix case-handling for custom curve namesPeter Dettman2015-03-231-16/+26
| | |
* | | Math.Raw support for custom binary curvesPeter Dettman2015-03-2342-11/+2365
| | | | | | | | | | | | - Also migrate the 'raw' stuff into Math.Raw following Java build
* | | Improve handling of extensions for session resumptionPeter Dettman2015-03-237-224/+273
| | |
* | | Reduce memory usage of INTERLEAVE2_TABLEPeter Dettman2015-03-231-1/+1
| | |
* | | Add SquarePow method to ECFieldElementPeter Dettman2015-03-231-8/+16
| | |
* | | Add ANSSI curve FRP256v1 and refactor curve registriesPeter Dettman2015-03-238-70/+203
|/ /
* | Update TLS for draft-ietf-tls-session-hash-04Peter Dettman2015-03-107-46/+45
| |
* | Port of DTLS tests from JavaPeter Dettman2015-03-091-4/+4
| |
* | Remove extraneous class referencePeter Dettman2015-03-091-1/+1
| |