mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
b999fd3c25
Signed-off-by: Alexander Bokovoy <ab@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
7 lines
228 B
Python
7 lines
228 B
Python
#!/usr/bin/env python
|
|
|
|
def options(opt):
|
|
opt.add_option('--accel-aes',
|
|
help=("Should we use accelerated AES crypto functions. Options are intelaesni|none."),
|
|
action="store", dest='accel_aes', default="none")
|