fe00f2c8创建于 2025年5月9日历史提交
// 3rd_party_lib:jwt4cj/build/jwt4cj
// 3rd_party_lib:jwt4cj/ci_lib/crypto4cj

internal import jwt4cj.*

internal import std.collection.*
internal import std.time.*
internal import stdx.encoding.json.*
internal import std.fs.*
internal import secodeFuzz.*
internal import std.unittest.*
import std.unittest.testmacro.*
internal import std.collection.ArrayList


func call_fuzz(keyId:String){
    let jwtBuilder :Builder = JWT.create()
    // public func withKeyId(keyId: String): Builder
    jwtBuilder.withKeyId(keyId)
    return
}

func unboundTest():Unit{
    var case_name = CString("Fuzz_JWTBuilder.withKeyId")
    unsafe{
        DT_FUZZ_String(0,30000000,case_name,0,call_fuzz)
        case_name.free()
    }
}

main(){
    unboundTest()
    return
}