File: go_gpgme.c

package info (click to toggle)
golang-github-proglottis-gpgme 0.1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: ansic: 116; makefile: 5
file content (103 lines) | stat: -rw-r--r-- 2,051 bytes parent folder | download
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#include "go_gpgme.h"

gpgme_off_t gogpgme_data_seek(gpgme_data_t dh, gpgme_off_t offset, int whence) {
	return gpgme_data_seek(dh, offset, whence);
}

gpgme_error_t gogpgme_op_assuan_transact_ext(
		gpgme_ctx_t ctx,
		char* cmd,
		void* data_h,
		void* inquiry_h,
		void* status_h,
		gpgme_error_t *operr
	){
	return gpgme_op_assuan_transact_ext(
		ctx,
		cmd,
		(gpgme_assuan_data_cb_t)    gogpgme_assuan_data_callback,    data_h,
		(gpgme_assuan_inquire_cb_t) gogpgme_assuan_inquiry_callback, inquiry_h,
		(gpgme_assuan_status_cb_t)  gogpgme_assuan_status_callback,  status_h,
		operr
	);
}

unsigned int key_revoked(gpgme_key_t k) {
	return k->revoked;
}

unsigned int key_expired(gpgme_key_t k) {
	return k->expired;
}

unsigned int key_disabled(gpgme_key_t k) {
	return k->disabled;
}

unsigned int key_invalid(gpgme_key_t k) {
	return k->invalid;
}

unsigned int key_can_encrypt(gpgme_key_t k) {
	return k->can_encrypt;
}

unsigned int key_can_sign(gpgme_key_t k) {
	return k->can_sign;
}

unsigned int key_can_certify(gpgme_key_t k) {
	return k->can_certify;
}

unsigned int key_secret(gpgme_key_t k) {
	return k->secret;
}

unsigned int key_can_authenticate(gpgme_key_t k) {
	return k->can_authenticate;
}

unsigned int key_is_qualified(gpgme_key_t k) {
	return k->is_qualified;
}

unsigned int signature_wrong_key_usage(gpgme_signature_t s) {
    return s->wrong_key_usage;
}

unsigned int signature_pka_trust(gpgme_signature_t s) {
    return s->pka_trust;
}

unsigned int signature_chain_model(gpgme_signature_t s) {
    return s->chain_model;
}

unsigned int subkey_revoked(gpgme_subkey_t k) {
	return k->revoked;
}

unsigned int subkey_expired(gpgme_subkey_t k) {
	return k->expired;
}

unsigned int subkey_disabled(gpgme_subkey_t k) {
	return k->disabled;
}

unsigned int subkey_invalid(gpgme_subkey_t k) {
	return k->invalid;
}

unsigned int subkey_secret(gpgme_subkey_t k) {
	return k->secret;
}

unsigned int uid_revoked(gpgme_user_id_t u) {
	return u->revoked;
}

unsigned int uid_invalid(gpgme_user_id_t u) {
	return u->invalid;
}