< Summary

Information
Class: System.IO.Compression.WinZipAesKeyMaterial
Assembly: System.IO.Compression
File(s): D:\runner\runtime\src\libraries\System.IO.Compression\src\System\IO\Compression\WinZipAesKeyMaterial.cs
Line coverage
92%
Covered lines: 52
Uncovered lines: 4
Coverable lines: 56
Total lines: 99
Line coverage: 92.8%
Branch coverage
62%
Covered branches: 5
Total branches: 8
Branch coverage: 62.5%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity NPath complexity Sequence coverage
.ctor(...)50%2281.81%
Create(...)66.66%6694.87%
GetSaltSize(...)100%11100%

File(s)

D:\runner\runtime\src\libraries\System.IO.Compression\src\System\IO\Compression\WinZipAesKeyMaterial.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4using System.Buffers;
 5using System.Diagnostics;
 6using System.Runtime.Versioning;
 7using System.Security.Cryptography;
 8using System.Text;
 9
 10namespace System.IO.Compression
 11{
 12    /// <summary>
 13    /// Represents the parsed components of WinZip AES key material.
 14    /// The key material layout is: [salt][encryption key][HMAC key][password verifier (2 bytes)].
 15    /// </summary>
 16    internal readonly struct WinZipAesKeyMaterial
 17    {
 68818        public byte[] Salt { get; }
 34419        public byte[] EncryptionKey { get; }
 34420        public byte[] HmacKey { get; }
 68821        public byte[] PasswordVerifier { get; }
 22        public int KeySizeBits { get; }
 51623        public int SaltSize { get; }
 24
 25        private WinZipAesKeyMaterial(byte[] salt, byte[] encryptionKey, byte[] hmacKey, byte[] passwordVerifier, int key
 51626        {
 51627            if (OperatingSystem.IsBrowser())
 028            {
 029                throw new PlatformNotSupportedException(SR.WinZipEncryptionNotSupportedOnBrowser);
 30            }
 51631            Salt = salt;
 51632            EncryptionKey = encryptionKey;
 51633            HmacKey = hmacKey;
 51634            PasswordVerifier = passwordVerifier;
 51635            KeySizeBits = keySizeBits;
 51636            SaltSize = GetSaltSize(keySizeBits);
 51637        }
 38
 39        /// <summary>
 40        /// Derives key material from a password and optional salt using PBKDF2-SHA1.
 41        /// </summary>
 42        internal static unsafe WinZipAesKeyMaterial Create(ReadOnlySpan<char> password, byte[]? salt, int keySizeBits)
 51643        {
 51644            if (OperatingSystem.IsBrowser())
 045            {
 046                throw new PlatformNotSupportedException(SR.WinZipEncryptionNotSupportedOnBrowser);
 47            }
 51648            int saltSize = GetSaltSize(keySizeBits);
 51649            int keySizeBytes = keySizeBits / 8;
 51650            int totalKeySize = checked(keySizeBytes + keySizeBytes + 2);
 51
 52            byte[] saltBytes;
 51653            if (salt is null)
 17254            {
 17255                saltBytes = new byte[saltSize];
 17256                RandomNumberGenerator.Fill(saltBytes);
 17257            }
 58            else
 34459            {
 34460                Debug.Assert(salt.Length == saltSize, $"Salt must be {saltSize} bytes for AES-{keySizeBits}.");
 34461                saltBytes = salt;
 34462            }
 63
 51664            int maxPasswordByteCount = Encoding.UTF8.GetMaxByteCount(password.Length);
 51665            byte[] rentedPasswordBytes = ArrayPool<byte>.Shared.Rent(maxPasswordByteCount);
 51666            Debug.Assert(totalKeySize <= 66, "totalKeySize should be at most 66 bytes (AES-256: 32 + 32 + 2)");
 51667            Span<byte> derivedKey = stackalloc byte[totalKeySize];
 68
 69            try
 51670            {
 51671                int actualByteCount = Encoding.UTF8.GetBytes(password, rentedPasswordBytes);
 51672                Span<byte> passwordSpan = rentedPasswordBytes.AsSpan(0, actualByteCount);
 73
 51674                Rfc2898DeriveBytes.Pbkdf2(
 51675                    passwordSpan,
 51676                    saltBytes,
 51677                    derivedKey,
 51678                    1000, // iteration count specified by the WinZip AE-1/AE-2 specification
 51679                    HashAlgorithmName.SHA1);
 80
 81                // Slice the derived key directly into its components instead of
 82                // round-tripping through a combined array and Parse.
 51683                byte[] encryptionKey = derivedKey.Slice(0, keySizeBytes).ToArray();
 51684                byte[] hmacKey = derivedKey.Slice(keySizeBytes, keySizeBytes).ToArray();
 51685                byte[] passwordVerifier = derivedKey.Slice(keySizeBytes + keySizeBytes, 2).ToArray();
 86
 51687                return new WinZipAesKeyMaterial(saltBytes, encryptionKey, hmacKey, passwordVerifier, keySizeBits);
 88            }
 89            finally
 51690            {
 51691                CryptographicOperations.ZeroMemory(rentedPasswordBytes);
 51692                CryptographicOperations.ZeroMemory(derivedKey);
 51693                ArrayPool<byte>.Shared.Return(rentedPasswordBytes);
 51694            }
 51695        }
 96
 120497        internal static int GetSaltSize(int keySizeBits) => keySizeBits / 16;
 98    }
 99}