Browse Source

added link to openpgp msg format standard as comment

Fabian Peter Hammerle 2 years ago
parent
commit
5ab840bae7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      profile_default/startup/init.py

+ 1 - 0
profile_default/startup/init.py

@@ -28,6 +28,7 @@ def numpy_array_from_file(
 def split_pgp_file(
     path: pathlib.Path,
 ) -> typing.Iterator[typing.Union[bytearray, pgpdump.packet.Packet]]:
+    # https://datatracker.ietf.org/doc/html/rfc4880#section-4
     bundle = pgpdump.BinaryData(path.read_bytes())
     remaining_bytes = bundle.data
     for packet in bundle.packets():