Skip to content

Commit af7f243

Browse files
author
David Pierson
committed
Update assembly version and doco changes for release 0.86.0
1 parent 6155a39 commit af7f243

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

mkDistribution.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ nant -t:net-1.1 -D:build.output.dir=current\net-11 -buildfile:sharpZLib.build bu
1818
mkdir current\net-20
1919
nant -t:net-2.0 -D:build.output.dir=current\net-20 -buildfile:sharpZLib.build build
2020

21-
21+
@rem Version 1.8 of Sandcastle Help File Builder no longer includes the Console.exe, use the GUI instead
2222
"c:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" .\SharpZipLib.shfb
2323

2424
mkdir current\doc

src/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@
7474

7575

7676
[assembly: AssemblyCompany("ICSharpCode.net")]
77-
[assembly: AssemblyCopyright("Copyright 2001-2007 Mike Krueger, John Reilly")]
78-
[assembly: AssemblyTrademark("Copyright 2001-2007 Mike Krueger, John Reilly")]
77+
[assembly: AssemblyCopyright("Copyright 2001-2010 Mike Krueger, John Reilly")]
78+
[assembly: AssemblyTrademark("Copyright 2001-2010 Mike Krueger, John Reilly")]
7979

80-
[assembly: AssemblyVersion("0.85.5.437")]
81-
[assembly: AssemblyInformationalVersionAttribute("0.85.5")]
80+
[assembly: AssemblyVersion("0.86.0.516")]
81+
[assembly: AssemblyInformationalVersionAttribute("0.86.0")]
8282

8383

8484
[assembly: CLSCompliant(true)]

src/Encryption/ZipAESStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ namespace ICSharpCode.SharpZipLib.Encryption {
4949
/// <summary>
5050
/// Encrypts and decrypts AES ZIP
5151
/// </summary>
52-
public class ZipAESStream : CryptoStream {
52+
internal class ZipAESStream : CryptoStream {
5353

5454
/// <summary>
5555
/// Constructor

src/Encryption/ZipAESTransform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace ICSharpCode.SharpZipLib.Encryption {
4646
/// <summary>
4747
/// Transforms stream using AES in CTR mode
4848
/// </summary>
49-
public class ZipAESTransform : ICryptoTransform {
49+
internal class ZipAESTransform : ICryptoTransform {
5050

5151
private const int PWD_VER_LENGTH = 2;
5252

src/Zip/ZipEntry.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ public CompressionMethod CompressionMethod {
837837
/// Returns same value as CompressionMethod except when AES encrypting, which
838838
/// places 99 in the method and places the real method in the extra data.
839839
/// </summary>
840-
public CompressionMethod CompressionMethodForHeader {
840+
internal CompressionMethod CompressionMethodForHeader {
841841
get {
842842
return (AESKeySize > 0) ? CompressionMethod.WinZipAES : method;
843843
}
@@ -906,7 +906,7 @@ public int AESKeySize {
906906
/// AES Encryption strength for storage in extra data in entry header.
907907
/// 1 is 128 bit, 2 is 192 bit, 3 is 256 bit.
908908
/// </summary>
909-
public byte AESEncryptionStrength {
909+
internal byte AESEncryptionStrength {
910910
get {
911911
return (byte)_aesEncryptionStrength;
912912
}
@@ -915,13 +915,13 @@ public byte AESEncryptionStrength {
915915
/// <summary>
916916
/// AES unsupported prior to .NET 2.0
917917
/// </summary>
918-
public int AESKeySize;
918+
internal int AESKeySize;
919919
#endif
920920

921921
/// <summary>
922922
/// Returns the length of the salt, in bytes
923923
/// </summary>
924-
public int AESSaltLen {
924+
internal int AESSaltLen {
925925
get {
926926
// Key size -> Salt length: 128 bits = 8 bytes, 192 bits = 12 bytes, 256 bits = 16 bytes.
927927
return AESKeySize / 16;
@@ -931,7 +931,7 @@ public int AESSaltLen {
931931
/// <summary>
932932
/// Number of extra bytes required to hold the AES Header fields (Salt, Pwd verify, AuthCode)
933933
/// </summary>
934-
public int AESOverheadSize {
934+
internal int AESOverheadSize {
935935
get {
936936
// File format:
937937
// Bytes Content

0 commit comments

Comments
 (0)