Sha256: b6f1d38b3214a3654cfc94bfb13ddaae5338e18731241669af39f42ac5005a20
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
/** * * XMLSec library * * DES Algorithm support * * This is free software; see Copyright file in the source * distribution for preciese wording. * * Copyright (C) 2010 Aleksey Sanin <aleksey@aleksey.com> */ #ifndef XMLSEC_NO_DES #include "globals.h" #include <stdlib.h> #include <stdio.h> #include <string.h> #include <gcrypt.h> #include <xmlsec/xmlsec.h> #include <xmlsec/xmltree.h> #include <xmlsec/keys.h> #include <xmlsec/transforms.h> #include <xmlsec/errors.h> #include <xmlsec/gnutls/crypto.h> /************************************************************************** * * We use xmlsec-gcrypt for all the basic crypto ops * *****************************************************************************/ #include <xmlsec/gcrypt/crypto.h> /** * xmlSecGnuTLSTransformKWDes3GetKlass: * * The Triple DES key wrapper transform klass. * * Returns: Triple DES key wrapper transform klass. */ xmlSecTransformId xmlSecGnuTLSTransformKWDes3GetKlass(void) { return(xmlSecGCryptTransformKWDes3GetKlass()); } #endif /* XMLSEC_NO_DES */
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
xmlsec-shim-1.2.18.2 | vendor/xmlsec1-1.2.18/src/gnutls/kw_des.c |
xmlsec-shim-1.2.18.1 | vendor/xmlsec1-1.2.18/src/gnutls/kw_des.c |