Compare commits

..

No commits in common. "master" and "v1.0.2" have entirely different histories.

3 changed files with 2 additions and 7 deletions

View File

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

View File

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

View File

@ -18,7 +18,7 @@ This library contains test cases for the most important functions to ensure func
# Citation # Citation
The library can also be cited in scientific works, for example as follows: 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)* *Sommer, Thorsten (2020): Encrypter. Github: https://github.com/SommerEngineering/Encrypter, DOI: [doi.org/10.5281/zenodo.3604354](https://doi.org/10.5281/zenodo.3604354)*
# License # License
This library uses the BSD 3-clause license. This library uses the BSD 3-clause license.