Skip to content

Commit

Permalink
Update assembly version and doco changes for release 0.86.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Pierson committed May 24, 2010
1 parent 6155a39 commit af7f243
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion mkDistribution.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ nant -t:net-1.1 -D:build.output.dir=current\net-11 -buildfile:sharpZLib.build bu
mkdir current\net-20
nant -t:net-2.0 -D:build.output.dir=current\net-20 -buildfile:sharpZLib.build build


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

mkdir current\doc
Expand Down
8 changes: 4 additions & 4 deletions src/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@


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

[assembly: AssemblyVersion("0.85.5.437")]
[assembly: AssemblyInformationalVersionAttribute("0.85.5")]
[assembly: AssemblyVersion("0.86.0.516")]
[assembly: AssemblyInformationalVersionAttribute("0.86.0")]


[assembly: CLSCompliant(true)]
Expand Down
2 changes: 1 addition & 1 deletion src/Encryption/ZipAESStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace ICSharpCode.SharpZipLib.Encryption {
/// <summary>
/// Encrypts and decrypts AES ZIP
/// </summary>
public class ZipAESStream : CryptoStream {
internal class ZipAESStream : CryptoStream {

/// <summary>
/// Constructor
Expand Down
2 changes: 1 addition & 1 deletion src/Encryption/ZipAESTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace ICSharpCode.SharpZipLib.Encryption {
/// <summary>
/// Transforms stream using AES in CTR mode
/// </summary>
public class ZipAESTransform : ICryptoTransform {
internal class ZipAESTransform : ICryptoTransform {

private const int PWD_VER_LENGTH = 2;

Expand Down
10 changes: 5 additions & 5 deletions src/Zip/ZipEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ public CompressionMethod CompressionMethod {
/// Returns same value as CompressionMethod except when AES encrypting, which
/// places 99 in the method and places the real method in the extra data.
/// </summary>
public CompressionMethod CompressionMethodForHeader {
internal CompressionMethod CompressionMethodForHeader {
get {
return (AESKeySize > 0) ? CompressionMethod.WinZipAES : method;
}
Expand Down Expand Up @@ -906,7 +906,7 @@ public int AESKeySize {
/// AES Encryption strength for storage in extra data in entry header.
/// 1 is 128 bit, 2 is 192 bit, 3 is 256 bit.
/// </summary>
public byte AESEncryptionStrength {
internal byte AESEncryptionStrength {
get {
return (byte)_aesEncryptionStrength;
}
Expand All @@ -915,13 +915,13 @@ public byte AESEncryptionStrength {
/// <summary>
/// AES unsupported prior to .NET 2.0
/// </summary>
public int AESKeySize;
internal int AESKeySize;
#endif

/// <summary>
/// Returns the length of the salt, in bytes
/// </summary>
public int AESSaltLen {
internal int AESSaltLen {
get {
// Key size -> Salt length: 128 bits = 8 bytes, 192 bits = 12 bytes, 256 bits = 16 bytes.
return AESKeySize / 16;
Expand All @@ -931,7 +931,7 @@ public int AESSaltLen {
/// <summary>
/// Number of extra bytes required to hold the AES Header fields (Salt, Pwd verify, AuthCode)
/// </summary>
public int AESOverheadSize {
internal int AESOverheadSize {
get {
// File format:
// Bytes Content
Expand Down

0 comments on commit af7f243

Please sign in to comment.