Add bcrypt classes to mobile projects
2 files changed, 8 insertions, 4 deletions
diff --git a/crypto/BouncyCastle.Android.csproj b/crypto/BouncyCastle.Android.csproj
index d028b8b31..0b6f376bf 100644
--- a/crypto/BouncyCastle.Android.csproj
+++ b/crypto/BouncyCastle.Android.csproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -638,6 +638,8 @@
<Compile Include="src\crypto\digests\NonMemoableDigest.cs" />
<Compile Include="src\crypto\engines\SerpentEngineBase.cs" />
<Compile Include="src\crypto\engines\TnepresEngine.cs" />
+ <Compile Include="src\crypto\generators\BCrypt.cs" />
+ <Compile Include="src\crypto\generators\OpenBsdBCrypt.cs" />
<Compile Include="src\crypto\IAsymmetricBlockCipher.cs" />
<Compile Include="src\crypto\IAsymmetricCipherKeyPairGenerator.cs" />
<Compile Include="src\crypto\IBasicAgreement.cs" />
@@ -1510,4 +1512,4 @@
<None Include="checklist.txt" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
-</Project>
+</Project>
\ No newline at end of file
diff --git a/crypto/BouncyCastle.iOS.csproj b/crypto/BouncyCastle.iOS.csproj
index 65f710b8a..eeaf3bb12 100644
--- a/crypto/BouncyCastle.iOS.csproj
+++ b/crypto/BouncyCastle.iOS.csproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -633,6 +633,8 @@
<Compile Include="src\crypto\digests\NonMemoableDigest.cs" />
<Compile Include="src\crypto\engines\SerpentEngineBase.cs" />
<Compile Include="src\crypto\engines\TnepresEngine.cs" />
+ <Compile Include="src\crypto\generators\BCrypt.cs" />
+ <Compile Include="src\crypto\generators\OpenBsdBCrypt.cs" />
<Compile Include="src\crypto\IAsymmetricBlockCipher.cs" />
<Compile Include="src\crypto\IAsymmetricCipherKeyPairGenerator.cs" />
<Compile Include="src\crypto\IBasicAgreement.cs" />
@@ -1505,4 +1507,4 @@
<None Include="checklist.txt" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
-</Project>
+</Project>
\ No newline at end of file
|