crypto: fix AET_XTS misspellings

Signed-off-by: Jim Harris <james.r.harris@intel.com>
Change-Id: Idaec6f6ca2c3492898ecf808e10642b4cbd35b78
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15200
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
This commit is contained in:
Jim Harris 2022-11-01 22:33:42 +00:00 committed by Tomasz Zawadzki
parent 4674af01ed
commit 36aed79cc4
2 changed files with 2 additions and 2 deletions

View File

@ -2289,7 +2289,7 @@ name | Required | string | Name of the crypto vbdev to c
crypto_pmd | Required | string | Name of the crypto device driver
key | Required | string | Key in hex form
cipher | Required | string | Cipher to use, AES_CBC or AES_XTS (QAT and MLX5)
key2 | Required | string | 2nd key in hex form only required for cipher AET_XTS
key2 | Required | string | 2nd key in hex form only required for cipher AES_XTS
Both key and key2 must be passed in the hexlified form. For example, 256bit AES key may look like this:
afd9477abf50254219ccb75965fbe39f23ebead5676e292582a0a67f66b88215

View File

@ -265,7 +265,7 @@ if __name__ == "__main__":
p.add_argument('crypto_pmd', help="Name of the crypto device driver")
p.add_argument('key', help="Key")
p.add_argument('-c', '--cipher', help="cipher to use, AES_CBC or AES_XTS (QAT only)")
p.add_argument('-k2', '--key2', help="2nd key for cipher AET_XTS", default=None)
p.add_argument('-k2', '--key2', help="2nd key for cipher AES_XTS", default=None)
p.set_defaults(func=bdev_crypto_create)
def bdev_crypto_delete(args):