mirror of
https://github.com/beerpiss/saekawa.git
synced 2024-12-18 10:15:52 +01:00
4ce49973a5
* initial encryption work still need to figure out how to decrypt the requests. i don't even have an idea how long the key is. * feat: encryption support
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[general]
|
|
# Set to 'false' to disable the hook
|
|
enable = true
|
|
# Whether the hook should export your class medals and emblems or not.
|
|
export_class = true
|
|
# Whether FAILED should override FULL COMBO and ALL JUSTICE.
|
|
fail_over_lamp = false
|
|
# Timeout for web requests, in milliseconds
|
|
timeout = 3000
|
|
|
|
[cards]
|
|
# Access codes that should be whitelisted
|
|
# If this is empty, all cards will be whitelisted
|
|
# There should be no whitespace between the digits
|
|
# example: whitelist = ["00001111222233334444"]
|
|
whitelist = []
|
|
|
|
[crypto]
|
|
# Since CRYSTAL+, the game employs network encryption. If you do not wish to
|
|
# patch your game to disable encryption, you will need to fill in these values.
|
|
#
|
|
# All values are in hex strings.
|
|
key = ""
|
|
iv = ""
|
|
salt = ""
|
|
|
|
# Number of PBKDF2 iterations to hash the endpoint URL. Set to 70 for CHUNITHM SUN
|
|
# and newer, and 44 for older versions.
|
|
iterations = 70
|
|
|
|
[tachi]
|
|
# Tachi instance base URL
|
|
base_url = 'https://kamaitachi.xyz/'
|
|
# Tachi status endpoint
|
|
status = '/api/v1/status'
|
|
# Tachi score import endpoint
|
|
import = '/ir/direct-manual/import'
|
|
# Your Tachi API key
|
|
api_key = 'your-key-here' |