1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-22 19:44:50 +02:00

Remove superfluous states

This commit is contained in:
Paul Schaub 2022-10-26 18:22:50 +02:00
parent 7e8841abf3
commit a0ba6828c9
2 changed files with 3 additions and 27 deletions

View file

@ -67,7 +67,7 @@ public class PDA {
case Signature:
if (stackItem == ops) {
return CorrespondingSignature;
return LiteralMessage;
} else {
throw new MalformedOpenPgpMessageException(this, input, stackItem);
}
@ -96,7 +96,7 @@ public class PDA {
switch (input) {
case Signature:
if (stackItem == ops) {
return CorrespondingSignature;
return CompressedMessage;
} else {
throw new MalformedOpenPgpMessageException(this, input, stackItem);
}
@ -125,7 +125,7 @@ public class PDA {
switch (input) {
case Signature:
if (stackItem == ops) {
return CorrespondingSignature;
return EncryptedMessage;
} else {
throw new MalformedOpenPgpMessageException(this, input, stackItem);
}
@ -147,26 +147,6 @@ public class PDA {
}
},
CorrespondingSignature {
@Override
State transition(InputAlphabet input, PDA automaton) throws MalformedOpenPgpMessageException {
StackAlphabet stackItem = automaton.popStack();
if (input == InputAlphabet.EndOfSequence) {
if (stackItem == terminus && automaton.stack.isEmpty()) {
return Valid;
} else {
// premature end of stream
throw new MalformedOpenPgpMessageException(this, input, stackItem);
}
} else if (input == InputAlphabet.Signature) {
if (stackItem == ops) {
return CorrespondingSignature;
}
}
throw new MalformedOpenPgpMessageException(this, input, stackItem);
}
},
Valid {
@Override
State transition(InputAlphabet input, PDA automaton) throws MalformedOpenPgpMessageException {

View file

@ -13,10 +13,6 @@ public enum StackAlphabet {
* OnePassSignature (in case of BC this represents a OnePassSignatureList).
*/
ops,
/**
* ESK. Not used, as BC combines encrypted data with their encrypted session keys.
*/
esk,
/**
* Special symbol representing the end of the message.
*/