Compare commits

...

8 Commits

Author SHA1 Message Date
Thorsten Sommer
4b590ef64b Changed description 2020-02-08 20:23:38 +01:00
Thorsten Sommer
2b4916cb2e Note the cipher mode CBC explicitly 2020-02-08 20:11:19 +01:00
Thorsten Sommer
a0d7fb6343 Updated DOI 2020-01-12 12:35:36 +01:00
Thorsten Sommer
a5a9a1e5d3 Fixed documentation bug for releases 2020-01-12 12:08:52 +01:00
Thorsten Sommer
1e98e7a54a Added citation 2020-01-10 19:21:14 +01:00
Thorsten Sommer
b1d75aac46 Added citation 2020-01-10 19:19:06 +01:00
Thorsten Sommer
49f98d8076 Added citation 2020-01-10 19:18:15 +01:00
Thorsten Sommer
fbfaeadf24 Update 2020-01-05 23:59:31 +01:00
4 changed files with 17 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@
*.user
*.userosscache
*.sln.docstates
*nuget.config
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

View File

@ -53,6 +53,7 @@ namespace Encrypter
aes.Padding = PaddingMode.PKCS7;
aes.Key = key;
aes.IV = iv;
aes.Mode = CipherMode.CBC;
using var encryption = aes.CreateEncryptor();
@ -132,6 +133,7 @@ namespace Encrypter
aes.Padding = PaddingMode.PKCS7;
aes.Key = key;
aes.IV = iv;
aes.Mode = CipherMode.CBC;
using var encryption = aes.CreateEncryptor();

View File

@ -5,16 +5,23 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Thorsten Sommer</Authors>
<Description>A simple AES encryption library.</Description>
<Description>An AES encryption library.</Description>
<Copyright>Thorsten Sommer</Copyright>
<PackageProjectUrl>https://github.com/SommerEngineering/Encrypter</PackageProjectUrl>
<RepositoryUrl>https://github.com/SommerEngineering/Encrypter</RepositoryUrl>
<PackageTags>Cryptography, AES, Encryption, Data, Security</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyVersion>1.0.2.0</AssemblyVersion>
<FileVersion>1.0.2.0</FileVersion>
<Version>1.0.2</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>C:\Users\Thorsten\Downloads\repos\Encrypter\Encrypter\Encrypter.xml</DocumentationFile>
<DocumentationFile>$(MSBuildThisFileDirectory)\Encrypter.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>$(MSBuildThisFileDirectory)\Encrypter.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>

View File

@ -15,5 +15,10 @@ This library was implemented especially for .NET Core 3.1 and newer. It is there
# Test cases
This library contains test cases for the most important functions to ensure functionality.
# Citation
The library can also be cited in scientific works, for example as follows:
*Sommer, Thorsten (2020): Encrypter. Github: https://github.com/SommerEngineering/Encrypter, DOI: [doi.org/10.5281/zenodo.3601356](https://doi.org/10.5281/zenodo.3601356)*
# License
This library uses the BSD 3-clause license.