-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathTarVerifier.cs
More file actions
71 lines (64 loc) · 2.63 KB
/
TarVerifier.cs
File metadata and controls
71 lines (64 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.IO;
using System.IO.Compression;
using System.Collections.Generic;
using System.Formats.Tar;
using Microsoft.SignCheck.Logging;
namespace Microsoft.SignCheck.Verification
{
public class TarVerifier : PgpVerifier
{
public TarVerifier(Log log, Exclusions exclusions, SignatureVerificationOptions options, string fileExtension) : base(log, exclusions, options, fileExtension)
{
if (fileExtension != ".tar" && fileExtension != ".gz" && fileExtension != ".tgz")
{
throw new ArgumentException("fileExtension must be .tar, .gz, or .tgz");
}
}
public override SignatureVerificationResult VerifySignature(string path, string parent, string virtualPath)
=> VerifyDetachedSignature(path, parent, virtualPath);
protected override (string signatureDocument, string signableContent) GetSignatureDocumentAndSignableContent(string path, string tempDir)
=> GetDetachedSignatureDocumentAndSignableContent(path, tempDir);
protected override IEnumerable<ArchiveEntry> ReadArchiveEntries(string archivePath)
{
using (var fileStream = File.Open(archivePath, FileMode.Open))
{
TarReader reader = null;
GZipStream gzipStream = null;
try
{
if (FileExtension == ".tar")
{
reader = new TarReader(fileStream);
}
else
{
gzipStream = new GZipStream(fileStream, CompressionMode.Decompress);
reader = new TarReader(gzipStream);
}
TarEntry entry;
while ((entry = reader.TryGetNextTarEntry()) != null)
{
// Skip directories
if (!entry.Name.EndsWith("/"))
{
yield return new ArchiveEntry()
{
RelativePath = entry.Name,
ContentStream = entry.DataStream,
ContentSize = entry.Length
};
}
}
}
finally
{
reader?.Dispose();
gzipStream?.Dispose();
}
}
}
}
}