-
Notifications
You must be signed in to change notification settings - Fork 13
/
pkcs11rsaoaepparams.c
65 lines (52 loc) · 2.44 KB
/
pkcs11rsaoaepparams.c
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
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Guillaume Amringer |
+----------------------------------------------------------------------+
*/
#include "pkcs11int.h"
zend_class_entry *ce_Pkcs11_RsaOaepParams;
static zend_object_handlers pkcs11_rsaoaepparams_handlers;
ZEND_BEGIN_ARG_INFO_EX(arginfo___construct, 0, 0, 2)
ZEND_ARG_TYPE_INFO(0, mechanismId, IS_LONG, 0)
ZEND_ARG_TYPE_INFO(0, mgfId, IS_LONG, 0)
ZEND_ARG_TYPE_INFO(0, source, IS_STRING, 1)
ZEND_END_ARG_INFO()
PHP_METHOD(RsaOaepParams, __construct) {
CK_RV rv;
zend_long mechanismId;
zend_long mgfId;
zend_string *source = NULL;
ZEND_PARSE_PARAMETERS_START(2,3)
Z_PARAM_LONG(mechanismId)
Z_PARAM_LONG(mgfId)
Z_PARAM_OPTIONAL
Z_PARAM_STR(source)
ZEND_PARSE_PARAMETERS_END();
pkcs11_rsaoaepparams_object *objval = Z_PKCS11_RSAOAEPPARAMS_P(ZEND_THIS);
objval->params.hashAlg = mechanismId;
objval->params.mgf = mgfId;
objval->params.source = CKZ_DATA_SPECIFIED;
if (source && ZSTR_LEN(source) > 0) {
objval->params.pSourceData = ZSTR_VAL(source);
objval->params.ulSourceDataLen = ZSTR_LEN(source);
}
}
void pkcs11_rsaoaepparams_shutdown(pkcs11_rsaoaepparams_object *obj) {
}
static zend_function_entry rsaoaepparams_class_functions[] = {
PHP_ME(RsaOaepParams, __construct, arginfo___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
DEFINE_MAGIC_FUNCS(pkcs11_rsaoaepparams, rsaoaepparams, RsaOaepParams)