diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-10-11 17:48:42 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2018-10-11 17:48:42 +0700 |
commit | 83fe8ece2faa200db9f7cc9dbf783a505c1e8990 (patch) | |
tree | 77c350f700c18e36091f9988697342e8ac3a906c /crypto | |
parent | Refactoring to support custom ISignatureFactory (diff) | |
download | BouncyCastle.NET-ed25519-83fe8ece2faa200db9f7cc9dbf783a505c1e8990.tar.xz |
Add missing file entry from previous commit
Diffstat (limited to '')
-rw-r--r-- | crypto/BouncyCastle.Android.csproj | 1 | ||||
-rw-r--r-- | crypto/BouncyCastle.csproj | 1 | ||||
-rw-r--r-- | crypto/BouncyCastle.iOS.csproj | 1 | ||||
-rw-r--r-- | crypto/crypto.csproj | 5 |
4 files changed, 8 insertions, 0 deletions
diff --git a/crypto/BouncyCastle.Android.csproj b/crypto/BouncyCastle.Android.csproj index 80a50ff56..677c6db04 100644 --- a/crypto/BouncyCastle.Android.csproj +++ b/crypto/BouncyCastle.Android.csproj @@ -658,6 +658,7 @@ <Compile Include="src\crypto\IEntropySourceProvider.cs" /> <Compile Include="src\crypto\IMac.cs" /> <Compile Include="src\crypto\IRawAgreement.cs" /> + <Compile Include="src\crypto\IRsa.cs" /> <Compile Include="src\crypto\ISignatureFactory.cs" /> <Compile Include="src\crypto\IStreamCalculator.cs" /> <Compile Include="src\crypto\ISigner.cs" /> diff --git a/crypto/BouncyCastle.csproj b/crypto/BouncyCastle.csproj index fb4baa9b5..1b9428c18 100644 --- a/crypto/BouncyCastle.csproj +++ b/crypto/BouncyCastle.csproj @@ -652,6 +652,7 @@ <Compile Include="src\crypto\IEntropySourceProvider.cs" /> <Compile Include="src\crypto\IMac.cs" /> <Compile Include="src\crypto\IRawAgreement.cs" /> + <Compile Include="src\crypto\IRsa.cs" /> <Compile Include="src\crypto\ISignatureFactory.cs" /> <Compile Include="src\crypto\IStreamCalculator.cs" /> <Compile Include="src\crypto\ISigner.cs" /> diff --git a/crypto/BouncyCastle.iOS.csproj b/crypto/BouncyCastle.iOS.csproj index 34e7b4ec3..2d36cb223 100644 --- a/crypto/BouncyCastle.iOS.csproj +++ b/crypto/BouncyCastle.iOS.csproj @@ -653,6 +653,7 @@ <Compile Include="src\crypto\IEntropySourceProvider.cs" /> <Compile Include="src\crypto\IMac.cs" /> <Compile Include="src\crypto\IRawAgreement.cs" /> + <Compile Include="src\crypto\IRsa.cs" /> <Compile Include="src\crypto\ISignatureFactory.cs" /> <Compile Include="src\crypto\IStreamCalculator.cs" /> <Compile Include="src\crypto\ISigner.cs" /> diff --git a/crypto/crypto.csproj b/crypto/crypto.csproj index 85cf632c8..c6dd131e7 100644 --- a/crypto/crypto.csproj +++ b/crypto/crypto.csproj @@ -3124,6 +3124,11 @@ BuildAction = "Compile" /> <File + RelPath = "src\crypto\IRsa.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "src\crypto\ISignatureFactory.cs" SubType = "Code" BuildAction = "Compile" |