INNER CODE UNIT · Python

time_trap

CYBERGEM777/HIDEAGEM · HIDEAGEM.py:155

        time_trap    = -1 # Time Trap disabled
        gem_protocol = 0 # Auto protocol

    # Prepare a c_uint64 variable to capture the output size
    out_ocean_size = ctypes.c_uint64()

    # Hide Gem Files in Ocean.
    # Returned GEM_OCEAN memory must be freed below!
    GEM_OCEAN = HIDEAGEM_CORE.HIDEAGEM_HIDE_GEMS_C(
        gem_protocol,
        ocean_ptr,
        ocean_size,
        ctypes.cast(arr, ctypes.POINTER(ctypes.POINTER(ctypes.c_char))),  # Assuming arr is an array of string pointers
        len(args.files),
        password_c,
        time_trap,
        ctypes.byref(out_ocean_size),  # Pass the reference to out_ocean_size
        args.validate

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…