-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSecurityDriven.AesGcmStrict.csproj
39 lines (33 loc) · 1.68 KB
/
SecurityDriven.AesGcmStrict.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>AesGcmStrict</PackageId>
<TargetFrameworks>netstandard2.1;net60</TargetFrameworks>
<Authors>Stan Drapkin</Authors>
<Company>https://SecurityDriven.net</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.ToString(yyyy)) Stan Drapkin</Copyright>
<RepositoryUrl>https://github.com/sdrapkin/SecurityDriven.AesGcmStrict</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.2</Version>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Inferno.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://avatars.githubusercontent.com/u/9137858?s=128</PackageIconUrl>
<PackageReleaseNotes>Replacement for System.Security.Cryptography.AesGcm.</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Wraps AesGcm and enforces AesGcm Tag to be exactly 16 bytes. Use AesGcmStrict instead of AesGcm. AesGcm allows truncated Tags (ex. any AesGcm-provided Tag truncated to 12 bytes will successfully decrypt).</Description>
<PackageTags>AesGcm</PackageTags>
<PackageProjectUrl>https://github.com/sdrapkin/SecurityDriven.AesGcmStrict</PackageProjectUrl>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>SecurityDriven.AesGcmStrict.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="*.xml" />
</ItemGroup>
<ItemGroup>
<None Remove="LICENSE.md" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>