Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
4b590ef64b | ||
|
2b4916cb2e | ||
|
a0d7fb6343 |
@ -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();
|
||||
|
||||
|
@ -5,12 +5,15 @@
|
||||
<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'">
|
||||
|
@ -18,7 +18,7 @@ This library contains test cases for the most important functions to ensure func
|
||||
# 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.3604354](https://doi.org/10.5281/zenodo.3604354)*
|
||||
*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.
|
Loading…
Reference in New Issue
Block a user