SMBServer v1.4.3

This commit is contained in:
TalAloni 2020-11-28 22:11:28 +02:00
parent c55c543ba4
commit 7599670481
6 changed files with 17 additions and 9 deletions

View file

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyVersion("1.4.3.0")]
[assembly: AssemblyFileVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.3.0")]

View file

@ -4,7 +4,7 @@
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks> <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>SMBLibrary.Win32</AssemblyName> <AssemblyName>SMBLibrary.Win32</AssemblyName>
<Version>1.4.2</Version> <Version>1.4.3</Version>
<RootNamespace>SMBLibrary.Win32</RootNamespace> <RootNamespace>SMBLibrary.Win32</RootNamespace>
<Authors>Tal Aloni</Authors> <Authors>Tal Aloni</Authors>
<PackageDescription>Windows specific extensions for SMBLibrary</PackageDescription> <PackageDescription>Windows specific extensions for SMBLibrary</PackageDescription>

View file

@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
// //
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyVersion("1.4.3.0")]
[assembly: AssemblyFileVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.3.0")]
[assembly: InternalsVisibleTo("SMBLibrary.Tests")] [assembly: InternalsVisibleTo("SMBLibrary.Tests")]

View file

@ -436,3 +436,11 @@ Revision History:
1.4.2 - Server: Bugfix: Buffer was not set to the correct size for SMB2 Large MTU. 1.4.2 - Server: Bugfix: Buffer was not set to the correct size for SMB2 Large MTU.
Client: Client: SMB1FileStore: Implemented SetFileInformation with FileInformation parameter. Client: Client: SMB1FileStore: Implemented SetFileInformation with FileInformation parameter.
1.4.3 - Client: Bugfix: Reading FindInformationList may have caused infinite loop.
Added SMB2TransformHeader implementation.
Added logic to calculate SMB 3.x encryption / decryption keys.
Added SMB 3.0 message signing logic.
SMB2Cryptography: Added logic for SMB 3.0 encryption.
Client: Added SMB 3.0 support.
Server: Added option to enable SMB 3.0 dialect.

View file

@ -4,11 +4,11 @@
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks> <TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>SMBLibrary</AssemblyName> <AssemblyName>SMBLibrary</AssemblyName>
<Version>1.4.2</Version> <Version>1.4.3</Version>
<RootNamespace>SMBLibrary</RootNamespace> <RootNamespace>SMBLibrary</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Tal Aloni</Authors> <Authors>Tal Aloni</Authors>
<PackageDescription>SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0 and SMB 2.1 server and client implementation</PackageDescription> <PackageDescription>SMBLibrary is an open-source C# SMB 1.0/CIFS, SMB 2.0, SMB 2.1 and SMB 3.0 server and client implementation</PackageDescription>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression> <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TalAloni/SMBLibrary</PackageProjectUrl> <PackageProjectUrl>https://github.com/TalAloni/SMBLibrary</PackageProjectUrl>
<RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl> <RepositoryUrl>https://github.com/TalAloni/SMBLibrary</RepositoryUrl>

View file

@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Build Number // Build Number
// Revision // Revision
// //
[assembly: AssemblyVersion("1.4.2.0")] [assembly: AssemblyVersion("1.4.3.0")]
[assembly: AssemblyFileVersion("1.4.2.0")] [assembly: AssemblyFileVersion("1.4.3.0")]