From f5fc9494fcf7865063c7545f391b473b4276ce5f Mon Sep 17 00:00:00 2001 From: Slavomir Date: Sun, 6 Sep 2020 18:19:21 +0200 Subject: [PATCH] Remove old EncodingHex module --- ql/src/semmle/go/frameworks/Stdlib.qll | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ql/src/semmle/go/frameworks/Stdlib.qll b/ql/src/semmle/go/frameworks/Stdlib.qll index 942e5fe1da3..c4bf59e46a9 100644 --- a/ql/src/semmle/go/frameworks/Stdlib.qll +++ b/ql/src/semmle/go/frameworks/Stdlib.qll @@ -741,18 +741,6 @@ module EncodingJson { } } -/** Provides models of some functions in the `encoding/hex` package. */ -module EncodingHex { - private class DecodeStringFunction extends TaintTracking::FunctionModel { - DecodeStringFunction() { this.hasQualifiedName("encoding/hex", "DecodeString") } - - override predicate hasTaintFlow(FunctionInput inp, FunctionOutput outp) { - inp.isParameter(0) and - outp.isResult(0) - } - } -} - /** Provides models of some functions in the `crypto/cipher` package. */ module CryptoCipher { private class AeadOpenFunction extends TaintTracking::FunctionModel, Method {