File: recursive.txt

package info (click to toggle)
rust-sequoia-openpgp 2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,548 kB
  • sloc: sh: 6; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,657 bytes parent folder | download | duplicates (5)
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
Some messages with a fair amount of recursion.  These messages were
created by sequoia.  See serialize/serialize.rs:serialize_and_parse_1.

recursive-1.gpg:

  1: CompressedData(CompressedData { algo: 0 })
   1: Literal(Literal { body: "one (3 bytes)" })
   2: Literal(Literal { body: "two (3 bytes)" })
  2: Literal(Literal { body: "three (5 bytes)" })

recursive-2.gpg:

  1: CompressedData(CompressedData { algo: 0 })
   1: CompressedData(CompressedData { algo: 0 })
    1: Literal(Literal { body: "one (3 bytes)" })
    2: Literal(Literal { body: "two (3 bytes)" })
   2: CompressedData(CompressedData { algo: 0 })
    1: Literal(Literal { body: "three (5 bytes)" })
    2: Literal(Literal { body: "four (4 bytes)" })

recursive-3.gpg:

  1: CompressedData(CompressedData { algo: 0 })
   1: CompressedData(CompressedData { algo: 0 })
    1: CompressedData(CompressedData { algo: 0 })
     1: CompressedData(CompressedData { algo: 0 })
      1: Literal(Literal { body: "one (3 bytes)" })
      2: Literal(Literal { body: "two (3 bytes)" })
   2: CompressedData(CompressedData { algo: 0 })
    1: CompressedData(CompressedData { algo: 0 })
     1: Literal(Literal { body: "three (5 bytes)" })
    2: Literal(Literal { body: "four (4 bytes)" })

recursive-4.gpg:

  1: CompressedData(CompressedData { algo: 0 })
   1: Literal(Literal { body: "one (3 bytes)" })
   2: Literal(Literal { body: "two (3 bytes)" })
  2: Literal(Literal { body: "three (5 bytes)" })
  3: Literal(Literal { body: "four (4 bytes)" })
  4: CompressedData(CompressedData { algo: 0 })
   1: Literal(Literal { body: "five (4 bytes)" })
   2: Literal(Literal { body: "six (3 bytes)" })