Fabian Meumertzheim
Fabian Meumertzheim
Given the experimental status of rules_go's bzlmod support as well as the BCR, we decided to continuously push updates to it, modifying existing versions if necessary - so 0.34.0 is...
Gazelle 0.26.0 should have the fix, but it was updated in place so you might need to clean.
@SyrasX Sorry for the long wait, I have been quite busy finishing up some larger refactorings and feature additions. I will have to brush up my knowledge of XPath and...
@stefanbucur Could you review this? This differs from #174 in that the LCOV merger is no longer built without `bazel coverage`. @zhenyudg I added you as a coauthor.
Either of the following should work: ``` bazel run -c opt --config=asan-libfuzzer upb/fuzz:file_descriptor_parsenew_fuzzer_run -- --regression=true --corpus_dir= /some/file bazel run -c opt --config=asan-libfuzzer upb/fuzz:file_descriptor_parsenew_fuzzer_bin /some/file ``` The `*_run` target is a...
Recent mainline versions of Android have restricted access to the FIDO UUIDs to a system permission not available to third-party apps: http://androidxref.com/9.0.0_r3/xref/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/GattService.java#108 You could try whether explicitly granting the BLUETOOTH_PRIVILEGED...
That link is to an outdated version of the code, the current one is here: https://android.googlesource.com/platform/packages/apps/Bluetooth/+/master/src/com/android/bluetooth/gatt/GattService.java Based on the [message of the relevant commit](https://android.googlesource.com/platform/packages/apps/Bluetooth/+/a6ebe46992bcdf60bfc40cbb78974425b8901449), this is meant to prevent third-party...
@kyriakopoulosd WearAuthn takes a different route: It uses the Bluetooth HID API to emulate a USB HID security key. This has the disadvantage of not working with phones though. I...
Unfortunately the BLUETOOTH_PRIVILEGED can't be granted via adb as it is not marked as a development permission. I think that root access is needed to get this to run on...
> @FabianHenneke So If I get it right, WearAuthn Code will not work on Phones because of choosing Bluetooth HID API for emulating the token. However, would it work via...