webpg-npapi 0.6.1
|
Queues a threaded gpg genkey operation.
Definition at line 2179 of file webpgPluginAPI.cpp. Referenced by webpgPluginAPI(). { genKeyParams params; params.key_type = key_type; params.key_length = key_length; params.subkey_type = subkey_type; params.subkey_length = subkey_length; params.name_real = name_real; params.name_comment = name_comment; params.name_email = name_email; params.expire_date = expire_date; params.passphrase = passphrase; boost::thread genkey_thread( boost::bind( &webpgPluginAPI::genKeyThreadCaller, this, params) ); return "queued"; } |