com.checkmarx.sdk.utils.sca.fingerprints.SignatureCalculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
package com.checkmarx.sdk.utils.sca.fingerprints;
import com.checkmarx.sdk.exception.ScannerRuntimeException;
import java.io.IOException;
public interface SignatureCalculator {
CxSCAFileSignature calculateSignature(byte[] content) throws IOException, ScannerRuntimeException;
}