Message ID | 1481527639-17520-2-git-send-email-longpeng2@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/qapi/crypto.json b/qapi/crypto.json index f4fd93b..e63862a 100644 --- a/qapi/crypto.json +++ b/qapi/crypto.json @@ -55,6 +55,23 @@ ## +# @QCryptoHmacAlgorithm: +# +# The supported algorithms for hash-based message authentication code +# +# @md5: HMAC-MD5 +# @sha1: HMAC-SHA1 +# @sha256: HMAC-SHA256 +# @sha512: HMAC-SHA512 +# +# Since 2.9 +## +{ 'enum': 'QCryptoHmacAlgorithm', + 'prefix': 'QCRYPTO_HMAC_ALG', + 'data': ['md5', 'sha1', 'sha256', 'sha512']} + + +## # @QCryptoCipherAlgorithm: # # The supported algorithms for content encryption ciphers
This patch introduce HMAC algorithms relevant defination, they will be used by the following patch. Signed-off-by: Longpeng(Mike) <longpeng2@huawei.com> --- qapi/crypto.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+)