mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 13:40:09 +01:00
Remove base64 encoding, replace with hex encoding. Original patch from trow@ximian.com, added error handling. * dbus/dbus-string.c (_dbus_string_base64_encode) (_dbus_string_base64_decode): Remove. (_dbus_string_hex_decode): Add end_return argument so we can distinguish between OOM and invalid hex encoding. (_dbus_string_test): Remove base64 tests and add test case for invalid hex. * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c: Replace base64 with hex. * test/data/auth/invalid-hex-encoding.auth-script: New test case for invalid hex encoded data in auth protocol.
19 lines
354 B
Text
19 lines
354 B
Text
## this tests canceling EXTERNAL
|
|
|
|
SERVER
|
|
SEND 'AUTH EXTERNAL USERID_HEX'
|
|
EXPECT_COMMAND OK
|
|
EXPECT_STATE WAITING_FOR_INPUT
|
|
SEND 'CANCEL'
|
|
EXPECT_COMMAND REJECTED
|
|
EXPECT_STATE WAITING_FOR_INPUT
|
|
|
|
## now start over and see if it works
|
|
SEND 'AUTH EXTERNAL USERID_HEX'
|
|
EXPECT_COMMAND OK
|
|
EXPECT_STATE WAITING_FOR_INPUT
|
|
SEND 'BEGIN'
|
|
EXPECT_STATE AUTHENTICATED
|
|
|
|
|
|
|