Skip to content

Commit

Permalink
Bumped the Bouncy Castle dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Oct 15, 2015
1 parent 05afb7f commit 5796905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/bc-csharp
Submodule bc-csharp updated 52 files
+4 −0 crypto/BouncyCastle.Android.csproj
+4 −0 crypto/BouncyCastle.csproj
+4 −0 crypto/BouncyCastle.iOS.csproj
+9 −1 crypto/Contributors.html
+38 −0 crypto/crypto.csproj
+6 −0 crypto/src/asn1/nist/NISTObjectIdentifiers.cs
+10 −7 crypto/src/asn1/x9/X9ECParametersHolder.cs
+7 −11 crypto/src/bcpg/BcpgInputStream.cs
+5 −2 crypto/src/cms/SignerInformation.cs
+22 −0 crypto/src/crypto/IXof.cs
+534 −0 crypto/src/crypto/digests/KeccakDigest.cs
+32 −506 crypto/src/crypto/digests/SHA3Digest.cs
+111 −0 crypto/src/crypto/digests/ShakeDigest.cs
+17 −6 crypto/src/crypto/engines/AesEngine.cs
+17 −6 crypto/src/crypto/engines/AesFastEngine.cs
+21 −8 crypto/src/crypto/engines/AesLightEngine.cs
+48 −5 crypto/src/crypto/modes/gcm/GcmUtilities.cs
+1 −0 crypto/src/crypto/parameters/DHParameters.cs
+21 −29 crypto/src/crypto/signers/Iso9796d2PssSigner.cs
+24 −37 crypto/src/crypto/signers/Iso9796d2Signer.cs
+57 −0 crypto/src/crypto/signers/IsoTrailers.cs
+27 −36 crypto/src/crypto/signers/X931Signer.cs
+25 −0 crypto/src/crypto/util/Pack.cs
+320 −46 crypto/src/math/Primes.cs
+29 −0 crypto/src/math/ec/custom/sec/SecT113Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT113FieldElement.cs
+29 −0 crypto/src/math/ec/custom/sec/SecT131Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT131FieldElement.cs
+41 −0 crypto/src/math/ec/custom/sec/SecT163Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT163FieldElement.cs
+43 −0 crypto/src/math/ec/custom/sec/SecT193Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT193FieldElement.cs
+33 −0 crypto/src/math/ec/custom/sec/SecT233Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT233FieldElement.cs
+37 −0 crypto/src/math/ec/custom/sec/SecT239Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT239FieldElement.cs
+35 −0 crypto/src/math/ec/custom/sec/SecT283Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT283FieldElement.cs
+51 −0 crypto/src/math/ec/custom/sec/SecT409Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT409FieldElement.cs
+51 −0 crypto/src/math/ec/custom/sec/SecT571Field.cs
+3 −2 crypto/src/math/ec/custom/sec/SecT571FieldElement.cs
+67 −42 crypto/src/math/raw/Interleave.cs
+22 −2 crypto/src/security/DigestUtilities.cs
+4 −0 crypto/test/UnitTests.csproj
+837 −0 crypto/test/data/crypto/SHA3TestVectors.txt
+770 −0 crypto/test/data/crypto/SHAKETestVectors.txt
+374 −0 crypto/test/src/crypto/test/KeccakDigestTest.cs
+3 −1 crypto/test/src/crypto/test/RegressionTest.cs
+190 −278 crypto/test/src/crypto/test/SHA3DigestTest.cs
+290 −0 crypto/test/src/crypto/test/ShakeDigestTest.cs
+45 −6 crypto/test/src/math/ec/test/ECPointTest.cs

0 comments on commit 5796905

Please sign in to comment.