Skip to content

Commit

Permalink
Remove references to encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
tvoc-gs committed Dec 4, 2024
1 parent 174d3f4 commit ff66baa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ number of facade classes that construct and run these chains. Notably:
- `Initializer` initializes links between the code and resources, to traverse
the data structures more easily.

- `Marker` marks code and resources to be kept, encrypted, etc., based on the
configuration.
- `Marker` marks code and resources to be kept etc. based on the configuration.

- `Backporter` backports code to older versions of Java.

Expand All @@ -103,8 +102,8 @@ At a high level, the flow of data inside ProGuard is as follows:

- Traverse the input data, to parse any useful data structures.

- Process the data structures in a number of steps (mainly shrinking, string
encryption, optimization, obfuscation, class encryption).
- Process the data structures in a number of steps (mainly shrinking, optimization,
obfuscation).

- Traverse the input data again, this time to write to the output, by copying,
transforming, replacing, or removing data entries. The transformations can
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private void writeClassMap() throws IOException

if (clazz == null)
{
// The class is no longer in the classpool or encrypted class pool so it must have been shrunk.
// The class is no longer in the classpool, so it must have been shrunk.
// obfuscated name (original name, because it was removed from class pool so not obfuscated)
dataOutputStream.writeUTF(ClassUtil.externalClassName(className));
dataOutputStream.writeUTF(ClassUtil.externalClassName(initialStateInfo.getSuperClassName(className)));
Expand Down

0 comments on commit ff66baa

Please sign in to comment.