Clément "KPTN" OUDOT

Results 461 comments of Clément "KPTN" OUDOT

After a lot of test, here is a working solution: * return unicode password as `bytes[]` and use this value in unicodePwd dataset * Set unicodePwd as binary attribute in...

Seems the issue is in the scripting engine (`ldap.search()`)

@artlog Could you create a Pull request with the changes you made?

Code found on the mailing list: ```java // Where GUID is a byte array returned by a previous LDAP search String byteGUID = ""; for (int c=0;c<GUID.length;c++) { byteGUID =...

Sample Perl code: ```perl sub guid2string { my $objectGUID = shift; my $stringGUID = unpack("H*", $objectGUID); $stringGUID =~ s/^(\w\w)(\w\w)(\w\w)(\w\w)(\w\w)(\w\w)(\w\w)(\w\w)(\w\w\w\w)/$4$3$2$1-$6$5-$8$7-$9-/; return uc($stringGUID); } ```

See https://github.com/lsc-project/lsc-website/issues/1 LSC Fusion Directory plugin has been officially published even if Fusion Directory 1.4 is still not released. See https://github.com/lsc-project/lsc-fusiondirectory-plugin/releases/tag/v1.0

Proposed solution: create a randon tmp dir (`mktemp` with lsc prefix) for LOG_DIR. But LOG_DIR will still be overridden in RPM and DEB.

3 things: * Test with recent java versions (11, 17, ...) that default js code is well interpreted * Test graalvm.js with recent java versions (11, 17, ...) and if...