diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-06-03 20:44:45 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2017-06-03 20:44:45 +0700 |
commit | 9b3549d18ecc3e4f66488568594a626e7d6d8543 (patch) | |
tree | 9504d9265461ab4118bb0708fcd7f0c11ca9d9b6 /crypto/BouncyCastle.Android.csproj | |
parent | Fix reductions for custom secp128r1 field (diff) | |
download | BouncyCastle.NET-ed25519-9b3549d18ecc3e4f66488568594a626e7d6d8543.tar.xz |
Initial implementation of SM2 elliptic curve
- includes custom curve code - add lots of OIDs from GM standard
Diffstat (limited to 'crypto/BouncyCastle.Android.csproj')
-rw-r--r-- | crypto/BouncyCastle.Android.csproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/BouncyCastle.Android.csproj b/crypto/BouncyCastle.Android.csproj index 541b534cd..ca279bf25 100644 --- a/crypto/BouncyCastle.Android.csproj +++ b/crypto/BouncyCastle.Android.csproj @@ -292,6 +292,8 @@ <Compile Include="src\asn1\ess\OtherSigningCertificate.cs" /> <Compile Include="src\asn1\ess\SigningCertificate.cs" /> <Compile Include="src\asn1\ess\SigningCertificateV2.cs" /> + <Compile Include="src\asn1\gm\GMNamedCurves.cs" /> + <Compile Include="src\asn1\gm\GMObjectIdentifiers.cs" /> <Compile Include="src\asn1\gnu\GNUObjectIdentifiers.cs" /> <Compile Include="src\asn1\iana\IANAObjectIdentifiers.cs" /> <Compile Include="src\asn1\icao\CscaMasterList.cs" /> @@ -1117,6 +1119,10 @@ <Compile Include="src\math\ec\custom\djb\Curve25519Field.cs" /> <Compile Include="src\math\ec\custom\djb\Curve25519FieldElement.cs" /> <Compile Include="src\math\ec\custom\djb\Curve25519Point.cs" /> + <Compile Include="src\math\ec\custom\gm\SM2P256V1Curve.cs" /> + <Compile Include="src\math\ec\custom\gm\SM2P256V1Field.cs" /> + <Compile Include="src\math\ec\custom\gm\SM2P256V1FieldElement.cs" /> + <Compile Include="src\math\ec\custom\gm\SM2P256V1Point.cs" /> <Compile Include="src\math\ec\custom\sec\SecP128R1Curve.cs" /> <Compile Include="src\math\ec\custom\sec\SecP128R1Field.cs" /> <Compile Include="src\math\ec\custom\sec\SecP128R1FieldElement.cs" /> |