Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.5-rc1 24 lines 344 B view raw
1#include "nitrox_common.h" 2 3int nitrox_crypto_register(void) 4{ 5 int err; 6 7 err = nitrox_register_skciphers(); 8 if (err) 9 return err; 10 11 err = nitrox_register_aeads(); 12 if (err) { 13 nitrox_unregister_skciphers(); 14 return err; 15 } 16 17 return 0; 18} 19 20void nitrox_crypto_unregister(void) 21{ 22 nitrox_unregister_aeads(); 23 nitrox_unregister_skciphers(); 24}