Skip to content

Commit 250e01c

Browse files
committed
Add bcrypt classes to mobile projects
1 parent 2adeda9 commit 250e01c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

crypto/BouncyCastle.Android.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -638,6 +638,8 @@
638638
<Compile Include="src\crypto\digests\NonMemoableDigest.cs" />
639639
<Compile Include="src\crypto\engines\SerpentEngineBase.cs" />
640640
<Compile Include="src\crypto\engines\TnepresEngine.cs" />
641+
<Compile Include="src\crypto\generators\BCrypt.cs" />
642+
<Compile Include="src\crypto\generators\OpenBsdBCrypt.cs" />
641643
<Compile Include="src\crypto\IAsymmetricBlockCipher.cs" />
642644
<Compile Include="src\crypto\IAsymmetricCipherKeyPairGenerator.cs" />
643645
<Compile Include="src\crypto\IBasicAgreement.cs" />
@@ -1510,4 +1512,4 @@
15101512
<None Include="checklist.txt" />
15111513
</ItemGroup>
15121514
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
1513-
</Project>
1515+
</Project>

crypto/BouncyCastle.iOS.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -633,6 +633,8 @@
633633
<Compile Include="src\crypto\digests\NonMemoableDigest.cs" />
634634
<Compile Include="src\crypto\engines\SerpentEngineBase.cs" />
635635
<Compile Include="src\crypto\engines\TnepresEngine.cs" />
636+
<Compile Include="src\crypto\generators\BCrypt.cs" />
637+
<Compile Include="src\crypto\generators\OpenBsdBCrypt.cs" />
636638
<Compile Include="src\crypto\IAsymmetricBlockCipher.cs" />
637639
<Compile Include="src\crypto\IAsymmetricCipherKeyPairGenerator.cs" />
638640
<Compile Include="src\crypto\IBasicAgreement.cs" />
@@ -1505,4 +1507,4 @@
15051507
<None Include="checklist.txt" />
15061508
</ItemGroup>
15071509
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
1508-
</Project>
1510+
</Project>

0 commit comments

Comments
 (0)