mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #788] [MERGED] RAR5 decryption support #1229
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/788
Author: @Erior
Created: 12/16/2023
Status: ✅ Merged
Merged: 12/18/2023
Merged by: @adamhathcock
Base:
master← Head:develop📝 Commits (2)
d678275Implement RAR5 decryption619e44bCSharpier fixes📊 Changes
16 files changed (+419 additions, -2137 deletions)
View changed files
📝
src/SharpCompress/Archives/Rar/SeekableFilePart.cs(+10 -1)➕
src/SharpCompress/Common/Rar/CryptKey3.cs(+87 -0)➕
src/SharpCompress/Common/Rar/CryptKey5.cs(+97 -0)📝
src/SharpCompress/Common/Rar/Headers/ArchiveCryptHeader.cs(+6 -35)📝
src/SharpCompress/Common/Rar/Headers/FileHeader.cs(+40 -21)📝
src/SharpCompress/Common/Rar/Headers/Flags.cs(+11 -0)📝
src/SharpCompress/Common/Rar/Headers/RarHeader.cs(+1 -1)📝
src/SharpCompress/Common/Rar/Headers/RarHeaderFactory.cs(+26 -6)➕
src/SharpCompress/Common/Rar/ICryptKey.cs(+8 -0)➕
src/SharpCompress/Common/Rar/Rar5CryptoInfo.cs(+59 -0)📝
src/SharpCompress/Common/Rar/RarCryptoBinaryReader.cs(+17 -28)📝
src/SharpCompress/Common/Rar/RarCryptoWrapper.cs(+5 -10)➖
src/SharpCompress/Common/Rar/RarRijndael.cs(+0 -114)➕
src/SharpCompress/Crypto/BlockTransformer.cs(+32 -0)➖
src/SharpCompress/Crypto/RijndaelEngine.cs(+0 -1909)📝
tests/SharpCompress.Test/Rar/RarArchiveTests.cs(+20 -12)📄 Description
Rar5 decryption support that handles our current test files, might work with issues
#755 #718 #517
Lets see if this passes CSharpier tests
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.