![]() |
|
|||
0001 #include "nitrox_common.h" 0002 0003 int nitrox_crypto_register(void) 0004 { 0005 int err; 0006 0007 err = nitrox_register_skciphers(); 0008 if (err) 0009 return err; 0010 0011 err = nitrox_register_aeads(); 0012 if (err) { 0013 nitrox_unregister_skciphers(); 0014 return err; 0015 } 0016 0017 return 0; 0018 } 0019 0020 void nitrox_crypto_unregister(void) 0021 { 0022 nitrox_unregister_aeads(); 0023 nitrox_unregister_skciphers(); 0024 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |