blob: 4186374e4d0cdae5e86dcc8d6dd4346c2ed2c17a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/**
*
* XMLSec library
*
* AES Algorithm support
*
* This is free software; see Copyright file in the source
* distribution for preciese wording.
*
* Copyright (C) 2010-2016 Aleksey Sanin <aleksey@aleksey.com>. All Rights Reserved.
*/
#ifndef XMLSEC_NO_AES
#include "globals.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.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>
/**
* xmlSecGnuTLSTransformKWAes128GetKlass:
*
* The AES-128 kew wrapper transform klass.
*
* Returns: AES-128 kew wrapper transform klass.
*/
xmlSecTransformId
xmlSecGnuTLSTransformKWAes128GetKlass(void) {
return(xmlSecGCryptTransformKWAes128GetKlass());
}
/**
* xmlSecGnuTLSTransformKWAes192GetKlass:
*
* The AES-192 kew wrapper transform klass.
*
* Returns: AES-192 kew wrapper transform klass.
*/
xmlSecTransformId
xmlSecGnuTLSTransformKWAes192GetKlass(void) {
return(xmlSecGCryptTransformKWAes192GetKlass());
}
/**
* xmlSecGnuTLSTransformKWAes256GetKlass:
*
* The AES-256 kew wrapper transform klass.
*
* Returns: AES-256 kew wrapper transform klass.
*/
xmlSecTransformId
xmlSecGnuTLSTransformKWAes256GetKlass(void) {
return(xmlSecGCryptTransformKWAes256GetKlass());
}
#endif /* XMLSEC_NO_AES */
|