< 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    {
 37618        public byte[] Salt { get; }
 18819        public byte[] EncryptionKey { get; }
 18820        public byte[] HmacKey { get; }
 37621        public byte[] PasswordVerifier { get; }
 22        public int KeySizeBits { get; }
 28223        public int SaltSize { get; }
 24
 25        private WinZipAesKeyMaterial(byte[] salt, byte[] encryptionKey, byte[] hmacKey, byte[] passwordVerifier, int key
 28226        {
 28227            if (OperatingSystem.IsBrowser())
 028            {
 029                throw new PlatformNotSupportedException(SR.WinZipEncryptionNotSupportedOnBrowser);
 30            }
 28231            Salt = salt;
 28232            EncryptionKey = encryptionKey;
 28233            HmacKey = hmacKey;
 28234            PasswordVerifier = passwordVerifier;
 28235            KeySizeBits = keySizeBits;
 28236            SaltSize = GetSaltSize(keySizeBits);
 28237        }
 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)
 28243        {
 28244            if (OperatingSystem.IsBrowser())
 045            {
 046                throw new PlatformNotSupportedException(SR.WinZipEncryptionNotSupportedOnBrowser);
 47            }
 28248            int saltSize = GetSaltSize(keySizeBits);
 28249            int keySizeBytes = keySizeBits / 8;
 28250            int totalKeySize = checked(keySizeBytes + keySizeBytes + 2);
 51
 52            byte[] saltBytes;
 28253            if (salt is null)
 9454            {
 9455                saltBytes = new byte[saltSize];
 9456                RandomNumberGenerator.Fill(saltBytes);
 9457            }
 58            else
 18859            {
 18860                Debug.Assert(salt.Length == saltSize, $"Salt must be {saltSize} bytes for AES-{keySizeBits}.");
 18861                saltBytes = salt;
 18862            }
 63
 28264            int maxPasswordByteCount = Encoding.UTF8.GetMaxByteCount(password.Length);
 28265            byte[] rentedPasswordBytes = ArrayPool<byte>.Shared.Rent(maxPasswordByteCount);
 28266            Debug.Assert(totalKeySize <= 66, "totalKeySize should be at most 66 bytes (AES-256: 32 + 32 + 2)");
 28267            Span<byte> derivedKey = stackalloc byte[totalKeySize];
 68
 69            try
 28270            {
 28271                int actualByteCount = Encoding.UTF8.GetBytes(password, rentedPasswordBytes);
 28272                Span<byte> passwordSpan = rentedPasswordBytes.AsSpan(0, actualByteCount);
 73
 28274                Rfc2898DeriveBytes.Pbkdf2(
 28275                    passwordSpan,
 28276                    saltBytes,
 28277                    derivedKey,
 28278                    1000, // iteration count specified by the WinZip AE-1/AE-2 specification
 28279                    HashAlgorithmName.SHA1);
 80
 81                // Slice the derived key directly into its components instead of
 82                // round-tripping through a combined array and Parse.
 28283                byte[] encryptionKey = derivedKey.Slice(0, keySizeBytes).ToArray();
 28284                byte[] hmacKey = derivedKey.Slice(keySizeBytes, keySizeBytes).ToArray();
 28285                byte[] passwordVerifier = derivedKey.Slice(keySizeBytes + keySizeBytes, 2).ToArray();
 86
 28287                return new WinZipAesKeyMaterial(saltBytes, encryptionKey, hmacKey, passwordVerifier, keySizeBits);
 88            }
 89            finally
 28290            {
 28291                CryptographicOperations.ZeroMemory(rentedPasswordBytes);
 28292                CryptographicOperations.ZeroMemory(derivedKey);
 28293                ArrayPool<byte>.Shared.Return(rentedPasswordBytes);
 28294            }
 28295        }
 96
 65897        internal static int GetSaltSize(int keySizeBits) => keySizeBits / 16;
 98    }
 99}