FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-xmlsec/src/utils.c at master · mathspace/python-xmlsec · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
mathspace
/
python-xmlsec
Public
forked from
ener-i/python-xmlsec
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-xmlsec
/
src
/
utils.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
56 lines (49 loc) · 1.61 KB
Breadcrumbs
python-xmlsec
/
src
/
utils.c
Copy path
File metadata and controls
56 lines (49 loc) · 1.61 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// Copyright (c) 2017 Ryan Leckey
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include
"utils.h"
PyObject
*
PyXmlSec_GetFilePathOrContent
(
PyObject
*
file
,
int
*
is_content
) {
PyObject
*
data
;
PyObject
*
utf8
;
PyObject
*
tmp
=
NULL
;
if
(
PyObject_HasAttrString
(
file
,
"read"
)) {
data
=
PyObject_CallMethod
(
file
,
"read"
,
NULL
);
if
(
data
!=
NULL
&&
PyUnicode_Check
(
data
)) {
utf8
=
PyUnicode_AsUTF8String
(
data
);
Py_DECREF
(
data
);
data
=
utf8
;
}
*
is_content
=
1
;
return
data
;
}
*
is_content
=
0
;
if
(!
PyUnicode_FSConverter
(
file
,
&
tmp
)) {
return
NULL
;
}
return
tmp
;
}
int
PyXmlSec_SetStringAttr
(
PyObject
*
obj
,
const
char
*
name
,
const
char
*
value
) {
PyObject
*
tmp
=
PyUnicode_FromString
(
value
);
int
r
;
if
(
tmp
==
NULL
) {
return
-1
;
}
r
=
PyObject_SetAttrString
(
obj
,
name
,
tmp
);
Py_DECREF
(
tmp
);
return
r
;
}
int
PyXmlSec_SetLongAttr
(
PyObject
*
obj
,
const
char
*
name
,
long
value
) {
PyObject
*
tmp
=
PyLong_FromLong
(
value
);
int
r
;
if
(
tmp
==
NULL
) {
return
-1
;
}
r
=
PyObject_SetAttrString
(
obj
,
name
,
tmp
);
Py_DECREF
(
tmp
);
return
r
;
}
Back
|
FazBrowse Home
|
New Git URL