/** * XMLSec library * * This is free software; see Copyright file in the source * distribution for preciese wording. * * Copyright (C) 2002-2016 Aleksey Sanin . All Rights Reserved. */ #ifndef XMLSEC_NO_HMAC #include "globals.h" #include #include #include #include #include #include #include #include /************************************************************************** * * We use xmlsec-gcrypt for all the basic crypto ops * *****************************************************************************/ #include /** * xmlSecGnuTLSHmacGetMinOutputLength: * * Gets the value of min HMAC length. * * Returns: the min HMAC output length */ int xmlSecGnuTLSHmacGetMinOutputLength(void) { return xmlSecGCryptHmacGetMinOutputLength(); } /** * xmlSecGnuTLSHmacSetMinOutputLength: * @min_length: the new min length * * Sets the min HMAC output length */ void xmlSecGnuTLSHmacSetMinOutputLength(int min_length) { xmlSecGCryptHmacSetMinOutputLength(min_length); } #ifndef XMLSEC_NO_SHA1 /** * xmlSecGnuTLSTransformHmacSha1GetKlass: * * The HMAC-SHA1 transform klass. * * Returns: the HMAC-SHA1 transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformHmacSha1GetKlass(void) { return (xmlSecGCryptTransformHmacSha1GetKlass()); } #endif /* XMLSEC_NO_SHA1 */ #ifndef XMLSEC_NO_SHA256 /** * xmlSecGnuTLSTransformHmacSha256GetKlass: * * The HMAC-SHA256 transform klass. * * Returns: the HMAC-SHA256 transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformHmacSha256GetKlass(void) { return (xmlSecGCryptTransformHmacSha256GetKlass()); } #endif /* XMLSEC_NO_SHA256 */ #ifndef XMLSEC_NO_SHA384 /** * xmlSecGnuTLSTransformHmacSha384GetKlass: * * The HMAC-SHA384 transform klass. * * Returns: the HMAC-SHA384 transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformHmacSha384GetKlass(void) { return (xmlSecGCryptTransformHmacSha384GetKlass()); } #endif /* XMLSEC_NO_SHA384 */ #ifndef XMLSEC_NO_SHA512 /** * xmlSecGnuTLSTransformHmacSha512GetKlass: * * The HMAC-SHA512 transform klass. * * Returns: the HMAC-SHA512 transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformHmacSha512GetKlass(void) { return (xmlSecGCryptTransformHmacSha512GetKlass()); } #endif /* XMLSEC_NO_SHA512 */ #ifndef XMLSEC_NO_RIPEMD160 /** * xmlSecGnuTLSTransformHmacRipemd160GetKlass: * * The HMAC-RIPEMD160 transform klass. * * Returns: the HMAC-RIPEMD160 transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformHmacRipemd160GetKlass(void) { return (xmlSecGCryptTransformHmacRipemd160GetKlass()); } #endif /* XMLSEC_NO_RIPEMD160 */ #ifndef XMLSEC_NO_MD5 /** * xmlSecGnuTLSTransformHmacMd5GetKlass: * * The HMAC-MD5 transform klass. * * Returns: the HMAC-MD5 transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformHmacMd5GetKlass(void) { return (xmlSecGCryptTransformHmacMd5GetKlass()); } #endif /* XMLSEC_NO_MD5 */ #endif /* XMLSEC_NO_HMAC */