Skip to content

Commit be112f4

Browse files
committed
Fix build
1 parent 31c4655 commit be112f4

File tree

5 files changed

+20
-51
lines changed

5 files changed

+20
-51
lines changed

crypto/BouncyCastle.Android.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,7 @@
10571057
<Compile Include="src\crypto\signers\Ed25519Signer.cs" />
10581058
<Compile Include="src\crypto\signers\Ed448phSigner.cs" />
10591059
<Compile Include="src\crypto\signers\Ed448Signer.cs" />
1060+
<Compile Include="src\crypto\signers\EdDsa25519Signer.cs" />
10601061
<Compile Include="src\crypto\signers\GOST3410DigestSigner.cs" />
10611062
<Compile Include="src\crypto\signers\GOST3410Signer.cs" />
10621063
<Compile Include="src\crypto\signers\GenericSigner.cs" />
@@ -1486,7 +1487,8 @@
14861487
<Compile Include="src\openpgp\PgpUtilities.cs" />
14871488
<Compile Include="src\openpgp\PgpV3SignatureGenerator.cs" />
14881489
<Compile Include="src\openpgp\Rfc6637Utilities.cs" />
1489-
<Compile Include="src\openpgp\SXprUtilities.cs" />
1490+
<Compile Include="src\openpgp\SXprReader.cs" />
1491+
<Compile Include="src\openpgp\SXprWriter.cs" />
14901492
<Compile Include="src\openpgp\WrappedGeneratorStream.cs" />
14911493
<Compile Include="src\openssl\EncryptionException.cs" />
14921494
<Compile Include="src\openssl\IPasswordFinder.cs" />

crypto/BouncyCastle.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,6 +1051,7 @@
10511051
<Compile Include="src\crypto\signers\Ed25519Signer.cs" />
10521052
<Compile Include="src\crypto\signers\Ed448phSigner.cs" />
10531053
<Compile Include="src\crypto\signers\Ed448Signer.cs" />
1054+
<Compile Include="src\crypto\signers\EdDsa25519Signer.cs" />
10541055
<Compile Include="src\crypto\signers\GOST3410DigestSigner.cs" />
10551056
<Compile Include="src\crypto\signers\GOST3410Signer.cs" />
10561057
<Compile Include="src\crypto\signers\GenericSigner.cs" />
@@ -1480,7 +1481,8 @@
14801481
<Compile Include="src\openpgp\PgpUtilities.cs" />
14811482
<Compile Include="src\openpgp\PgpV3SignatureGenerator.cs" />
14821483
<Compile Include="src\openpgp\Rfc6637Utilities.cs" />
1483-
<Compile Include="src\openpgp\SXprUtilities.cs" />
1484+
<Compile Include="src\openpgp\SXprReader.cs" />
1485+
<Compile Include="src\openpgp\SXprWriter.cs" />
14841486
<Compile Include="src\openpgp\WrappedGeneratorStream.cs" />
14851487
<Compile Include="src\openssl\EncryptionException.cs" />
14861488
<Compile Include="src\openssl\IPasswordFinder.cs" />

crypto/BouncyCastle.iOS.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,6 +1052,7 @@
10521052
<Compile Include="src\crypto\signers\Ed25519Signer.cs" />
10531053
<Compile Include="src\crypto\signers\Ed448phSigner.cs" />
10541054
<Compile Include="src\crypto\signers\Ed448Signer.cs" />
1055+
<Compile Include="src\crypto\signers\EdDsa25519Signer.cs" />
10551056
<Compile Include="src\crypto\signers\GOST3410DigestSigner.cs" />
10561057
<Compile Include="src\crypto\signers\GOST3410Signer.cs" />
10571058
<Compile Include="src\crypto\signers\GenericSigner.cs" />
@@ -1481,7 +1482,8 @@
14811482
<Compile Include="src\openpgp\PgpUtilities.cs" />
14821483
<Compile Include="src\openpgp\PgpV3SignatureGenerator.cs" />
14831484
<Compile Include="src\openpgp\Rfc6637Utilities.cs" />
1484-
<Compile Include="src\openpgp\SXprUtilities.cs" />
1485+
<Compile Include="src\openpgp\SXprReader.cs" />
1486+
<Compile Include="src\openpgp\SXprWriter.cs" />
14851487
<Compile Include="src\openpgp\WrappedGeneratorStream.cs" />
14861488
<Compile Include="src\openssl\EncryptionException.cs" />
14871489
<Compile Include="src\openssl\IPasswordFinder.cs" />

crypto/crypto.csproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5143,6 +5143,11 @@
51435143
SubType = "Code"
51445144
BuildAction = "Compile"
51455145
/>
5146+
<File
5147+
RelPath = "src\crypto\signers\EdDsa25519Signer.cs"
5148+
SubType = "Code"
5149+
BuildAction = "Compile"
5150+
/>
51465151
<File
51475152
RelPath = "src\crypto\signers\GenericSigner.cs"
51485153
SubType = "Code"
@@ -7289,7 +7294,12 @@
72897294
BuildAction = "Compile"
72907295
/>
72917296
<File
7292-
RelPath = "src\openpgp\SXprUtilities.cs"
7297+
RelPath = "src\openpgp\SXprReader.cs"
7298+
SubType = "Code"
7299+
BuildAction = "Compile"
7300+
/>
7301+
<File
7302+
RelPath = "src\openpgp\SXprWriter.cs"
72937303
SubType = "Code"
72947304
BuildAction = "Compile"
72957305
/>

crypto/src/crypto/signers/EdDsa255519Signer.cs

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)