Merge remote-tracking branch 'upstream/dev' into doco
This commit is contained in:
5
doc/hook/crypto_methods.bb
Normal file
5
doc/hook/crypto_methods.bb
Normal file
@@ -0,0 +1,5 @@
|
||||
[h2]crypto_mthods[/h2]
|
||||
|
||||
Passed an array of crypto methods in local priority order.
|
||||
|
||||
You may change the order and add new methods or disable existing methods. 'aes256cbc' is always supported as a fallback and currently removing this has no effect.
|
||||
7
doc/hook/other_encapsulate.bb
Normal file
7
doc/hook/other_encapsulate.bb
Normal file
@@ -0,0 +1,7 @@
|
||||
[h2]other_encapsulate[/h2]
|
||||
|
||||
Passed an array of 'data', 'pubkey', 'alg', 'result' when encrypting data with an algorithm (alg) which is unknown to the system. Hooks are expected to identify their algorithm, encrypt data with pubkey and place the result in 'result'.
|
||||
|
||||
|
||||
|
||||
|
||||
5
doc/hook/other_unencapsulate.bb
Normal file
5
doc/hook/other_unencapsulate.bb
Normal file
@@ -0,0 +1,5 @@
|
||||
[h2]other_unencapsulate[/h2]
|
||||
|
||||
Passed an array of 'data', 'prvkey', 'alg', 'result' when decrypting data with an algorithm (alg) which is unknown to the system. Hooks are expected to identify their algorithm, decrypt data with prvkey and place the result in 'result'.
|
||||
|
||||
|
||||
@@ -145,6 +145,9 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the
|
||||
[zrl=[baseurl]/help/hook/cron_weekly]cron_weekly[/zrl]
|
||||
Called when weekly scheduled tasks are executed
|
||||
|
||||
[zrl=[baseurl]/help/hook/crypto_methods]crypto_methods[/zrl]
|
||||
Called when generating a list of crypto algorithms in the locally preferred order
|
||||
|
||||
[zrl=[baseurl]/help/hook/directory_item]directory_item[/zrl]
|
||||
Called when generating a directory listing for display
|
||||
|
||||
@@ -386,6 +389,12 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the
|
||||
[zrl=[baseurl]/help/hook/oembed_probe]oembed_probe[/zrl]
|
||||
Called when performing an oembed content lookup
|
||||
|
||||
[zrl=[baseurl]/help/hook/other_encapsulate]other_encapsulate[/zrl]
|
||||
Called when encrypting content for which the algorithm is unknown (see also crypto_methods)
|
||||
|
||||
[zrl=[baseurl]/help/hook/other_unencapsulate]other_unencapsulate[/zrl]
|
||||
Called when decrypting content for which the algorithm is unknown (see also crypto_methods)
|
||||
|
||||
[zrl=[baseurl]/help/hook/page_content_top]page_content_top[/zrl]
|
||||
Called when we generate a webpage (before calling the module content function)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user