On Mon, Dec 12, 2016 at 04:08:06PM +0800, Longpeng(Mike) wrote: > This patch introduce HMAC algorithms relevant defination, they will > be used by the following patch. > > Signed-off-by: Longpeng(Mike) <longpe...@huawei.com> > --- > qapi/crypto.json | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > 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']}
There's not actually any concept of hmac algorithms - you have standard hash algorithms used in the hmac calculation. IOW, you don't need to add this enum. The hmac APIs should just use QCryptoHashAlgorithm as their input. Regards, Daniel -- |: http://berrange.com -o- http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://entangle-photo.org -o- http://search.cpan.org/~danberr/ :|