Fraunhofer-AISEC/codyze

ScopeManager Error

0xNiko opened this issue · 0 comments

When I run codyze, I get a ScopeManager error message for each imported class.
Does this affect the results of the analysis? If that is the case, how can fix this issue?

import org.bouncycastle.jce.provider.BouncyCastleProvider;

import java.security.MessageDigest;
import java.security.Security;

public class Test{
    public static void main(String[] args) throws Exception{
        Security.addProvider(new BouncyCastleProvider());
        MessageDigest md = MessageDigest.getInstance("SHA3-256", "BC");
    }
}

Erros in crymlin.log

ERROR ScopeManager Could not find the scope java.security.Security needed to resolve the call java.security.Security.addProvider. Falling back to the current scope
ERROR ScopeManager Could not find the scope java.security.MessageDigest needed to resolve the call java.security.MessageDigest.getInstance. Falling back to the current scope