-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getTransitions() doesn't return all possible correct transitions #404
Comments
Happens for MessageDigest rule Expected:
Returned:
|
Happens for KeyStore rule Expected:
Returned:
|
Happens for SecureRandom rule Expected:
Returned:
|
rakshitkr
changed the title
getTransitions method is not returning all possible transitions
getTransitions() doesn't return all possible correct transitions
Dec 7, 2020
This was referenced Dec 7, 2020
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The method getTransitions in StateMachineGraphAnalyser is currently unable to handle multiple initial transitions like in SSLParameters rule. Additionally, it is doesn't return expected transitions when
|
operator is used inORDER
section.In order to avoid cycles in the graph, the code here skips already visited transition in the graph. Since
Stores
is already visited inGets->Loads->GetEntry->GetKey->SetEntry->Stores
, the transitionsGets->Loads->SetEntry->Stores
andGets->Loads->GetKey->SetEntry->Stores
containingStores
are skippedThe text was updated successfully, but these errors were encountered: