https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=166508
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from [email protected] --- Hello, the following patch eliminates the CAVEAT of glxsb(4) for me, so I can run AES with mixed length on soekris boxes using glxsb: --- crypto.c.orig 2015-03-13 12:01:21.000000000 +0100 +++ crypto.c 2016-03-25 11:04:57.670215000 +0100 @@ -362,6 +362,14 @@ (cap->cc_flags & match) == 0) continue; + /* + * workaround for CAVEAT in glxsb(4) + */ + if (strncmp(device_get_nameunit(cap->cc_dev), "glxsb", 5) == 0 && + cri->cri_alg == CRYPTO_AES_CBC && + cri->cri_klen != 128) + continue; + /* verify all the algorithms are supported. */ if (driver_suitable(cap, cri)) { if (best == NULL | -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
