./libgpg-error-1.7-i686/0000755000000000000000000000000011237043776013313 5ustar rootroot./libgpg-error-1.7-i686/usr/0000755000000000000000000000000011237043720014111 5ustar rootroot./libgpg-error-1.7-i686/usr/local/0000755000000000000000000000000011237043721015204 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/0000755000000000000000000000000011237043722016307 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/common-lisp/0000755000000000000000000000000011237043722020544 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/common-lisp/source/0000755000000000000000000000000011237043722022044 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/common-lisp/source/gpg-error/0000755000000000000000000000000011237043722023750 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/common-lisp/source/gpg-error/gpg-error.lisp0000644000000000000000000001570511237043717026561 0ustar rootroot;;;; libgpg-error.lisp ;;; Copyright (C) 2006 g10 Code GmbH ;;; ;;; This file is part of libgpg-error. ;;; ;;; libgpg-error is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public License ;;; as published by the Free Software Foundation; either version 2.1 of ;;; the License, or (at your option) any later version. ;;; ;;; libgpg-error is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; Lesser General Public License for more details. ;;; ;;; You should have received a copy of the GNU Lesser General Public ;;; License along with libgpg-error; if not, write to the Free ;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ;;; 02111-1307, USA. ;;; Set up the library. (in-package :gpg-error) (define-foreign-library libgpg-error (:unix "libgpg-error.so") (t (:default "libgpg-error"))) (use-foreign-library libgpg-error) ;;; System dependencies. (defctype size-t :unsigned-int "The system size_t type.") ;;; Error sources. (defcenum gpg-err-source-t "The GPG error source type." (:gpg-err-source-unknown 0) (:gpg-err-source-gcrypt 1) (:gpg-err-source-gpg 2) (:gpg-err-source-gpgsm 3) (:gpg-err-source-gpgagent 4) (:gpg-err-source-pinentry 5) (:gpg-err-source-scd 6) (:gpg-err-source-gpgme 7) (:gpg-err-source-keybox 8) (:gpg-err-source-ksba 9) (:gpg-err-source-dirmngr 10) (:gpg-err-source-gsti 11) (:gpg-err-source-any 31) (:gpg-err-source-user-1 32) (:gpg-err-source-user-2 33) (:gpg-err-source-user-3 34) (:gpg-err-source-user-4 35)) (defconstant +gpg-err-source-dim+ 256) ;;; The error code type gpg-err-code-t. ;;; libgpg-error-codes.lisp is loaded by ASDF. (defctype gpg-error-t :unsigned-int "The GPG error code type.") ;;; Bit mask manipulation constants. (defconstant +gpg-err-code-mask+ (- +gpg-err-code-dim+ 1)) (defconstant +gpg-err-source-mask+ (- +gpg-err-source-dim+ 1)) (defconstant +gpg-err-source-shift+ 24) ;;; Constructor and accessor functions. ;;; If we had in-library versions of our static inlines, we wouldn't ;;; need to replicate them here. Oh well. (defun c-gpg-err-make (source code) "Construct an error value from an error code and source. Within a subsystem, use gpg-error instead." (logior (ash (logand source +gpg-err-source-mask+) +gpg-err-source-shift+) (logand code +gpg-err-code-mask+))) (defun c-gpg-err-code (err) "retrieve the error code from an error value." (logand err +gpg-err-code-mask+)) (defun c-gpg-err-source (err) "retrieve the error source from an error value." (logand (ash err (- +gpg-err-source-shift+)) +gpg-err-source-mask+)) ;;; String functions. (defcfun ("gpg_strerror" c-gpg-strerror) :string (err gpg-error-t)) (defcfun ("gpg_strsource" c-gpg-strsource) :string (err gpg-error-t)) ;;; Mapping of system errors (errno). (defcfun ("gpg_err_code_from_errno" c-gpg-err-code-from-errno) gpg-err-code-t (err :int)) (defcfun ("gpg_err_code_to_errno" c-gpg-err-code-to-errno) :int (code gpg-err-code-t)) (defcfun ("gpg_err_code_from_syserror" c-gpg-err-code-from-syserror) gpg-err-code-t) ;;; Self-documenting convenience functions. ;;; See below. ;;; ;;; ;;; Lispy interface. ;;; ;;; ;;; Low-level support functions. (defun gpg-err-code-as-value (code-key) (foreign-enum-value 'gpg-err-code-t code-key)) (defun gpg-err-code-as-key (code) (foreign-enum-keyword 'gpg-err-code-t code)) (defun gpg-err-source-as-value (source-key) (foreign-enum-value 'gpg-err-source-t source-key)) (defun gpg-err-source-as-key (source) (foreign-enum-keyword 'gpg-err-source-t source)) (defun gpg-err-canonicalize (err) "Canonicalize the error value err." (gpg-err-make (gpg-err-source err) (gpg-err-code err))) (defun gpg-err-as-value (err) "Get the integer representation of the error value ERR." (let ((error (gpg-err-canonicalize err))) (c-gpg-err-make (gpg-err-source-as-value (gpg-err-source error)) (gpg-err-code-as-value (gpg-err-code error))))) ;;; Constructor and accessor functions. (defun gpg-err-make (source code) "Construct an error value from an error code and source. Within a subsystem, use gpg-error instead." ;; As an exception to the rule, the function gpg-err-make will use ;; the error source value as is when provided as integer, instead of ;; parsing it as an error value. (list (if (integerp source) (gpg-err-source-as-key source) (gpg-err-source source)) (gpg-err-code code))) (defvar *gpg-err-source-default* :gpg-err-source-unknown "define this to specify a default source for gpg-error.") (defun gpg-error (code) "Construct an error value from an error code, using the default source." (gpg-err-make *gpg-err-source-default* code)) (defun gpg-err-code (err) "Retrieve an error code from the error value ERR." (cond ((listp err) (second err)) ((keywordp err) err) ; FIXME (t (gpg-err-code-as-key (c-gpg-err-code err))))) (defun gpg-err-source (err) "Retrieve an error source from the error value ERR." (cond ((listp err) (first err)) ((keywordp err) err) ; FIXME (t (gpg-err-source-as-key (c-gpg-err-source err))))) ;;; String functions. (defun gpg-strerror (err) "Return a string containig a description of the error code." (c-gpg-strerror (gpg-err-as-value err))) ;;; FIXME: maybe we should use this as the actual implementation for ;;; gpg-strerror. ;; (defcfun ("gpg_strerror_r" c-gpg-strerror-r) :int ;; (err gpg-error-t) ;; (buf :string) ;; (buflen size-t)) ;; (defun gpg-strerror-r (err) ;; "Return a string containig a description of the error code." ;; (with-foreign-pointer-as-string (errmsg 256 errmsg-size) ;; (c-gpg-strerror-r (gpg-err-code-as-value (gpg-err-code err)) ;; errmsg errmsg-size))) (defun gpg-strsource (err) "Return a string containig a description of the error source." (c-gpg-strsource (gpg-err-as-value err))) ;;; Mapping of system errors (errno). (defun gpg-err-code-from-errno (err) "Retrieve the error code for the system error. If the system error is not mapped, :gpg-err-unknown-errno is returned." (gpg-err-code-as-key (c-gpg-err-code-from-errno err))) (defun gpg-err-code-to-errno (code) "Retrieve the system error for the error code. If this is not a system error, 0 is returned." (c-gpg-err-code-to-errno (gpg-err-code code))) (defun gpg-err-code-from-syserror () "Retrieve the error code directly from the system ERRNO. If the system error is not mapped, :gpg-err-unknown-errno is returned and :gpg-err-missing-errno if ERRNO has the value 0." (gpg-err-code-as-key (c-gpg-err-code-from-syserror))) ;;; Self-documenting convenience functions. (defun gpg-err-make-from-errno (source err) (gpg-err-make source (gpg-err-code-from-errno err))) (defun gpg-error-from-errno (err) (gpg-error (gpg-err-code-from-errno err))) (defun gpg-error-from-syserror () (gpg-error (gpg-err-code-from-syserror))) ./libgpg-error-1.7-i686/usr/local/share/common-lisp/source/gpg-error/gpg-error-codes.lisp0000644000000000000000000004013011237043720027634 0ustar rootroot;;;; Output of mkerrcodes.awk. DO NOT EDIT. ;;; Copyright (C) 2006 g10 Code GmbH ;;; ;;; This file is part of libgpg-error. ;;; ;;; libgpg-error is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public License ;;; as published by the Free Software Foundation; either version 2.1 of ;;; the License, or (at your option) any later version. ;;; ;;; libgpg-error is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; Lesser General Public License for more details. ;;; ;;; You should have received a copy of the GNU Lesser General Public ;;; License along with libgpg-error; if not, write to the Free ;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ;;; 02111-1307, USA. (in-package :gpg-error) ;;; The error code type gpg-err-code-t. ;;; This is used for system error codes. (defconstant +gpg-err-system-error+ (ash 1 15)) ;;; This is one more than the largest allowed entry. (defconstant +gpg-err-code-dim+ 65536) ;;; A helper macro to have the keyword values evaluated. (defmacro defcenum-eval (type doc &rest vals) `(defcenum ,type ,doc ,@(loop for v in vals collect `(,(first v) ,(eval (second v)))))) (defcenum-eval gpg-err-code-t "The GPG error code type." (:gpg-err-no-error 0) (:gpg-err-general 1) (:gpg-err-unknown-packet 2) (:gpg-err-unknown-version 3) (:gpg-err-pubkey-algo 4) (:gpg-err-digest-algo 5) (:gpg-err-bad-pubkey 6) (:gpg-err-bad-seckey 7) (:gpg-err-bad-signature 8) (:gpg-err-no-pubkey 9) (:gpg-err-checksum 10) (:gpg-err-bad-passphrase 11) (:gpg-err-cipher-algo 12) (:gpg-err-keyring-open 13) (:gpg-err-inv-packet 14) (:gpg-err-inv-armor 15) (:gpg-err-no-user-id 16) (:gpg-err-no-seckey 17) (:gpg-err-wrong-seckey 18) (:gpg-err-bad-key 19) (:gpg-err-compr-algo 20) (:gpg-err-no-prime 21) (:gpg-err-no-encoding-method 22) (:gpg-err-no-encryption-scheme 23) (:gpg-err-no-signature-scheme 24) (:gpg-err-inv-attr 25) (:gpg-err-no-value 26) (:gpg-err-not-found 27) (:gpg-err-value-not-found 28) (:gpg-err-syntax 29) (:gpg-err-bad-mpi 30) (:gpg-err-inv-passphrase 31) (:gpg-err-sig-class 32) (:gpg-err-resource-limit 33) (:gpg-err-inv-keyring 34) (:gpg-err-trustdb 35) (:gpg-err-bad-cert 36) (:gpg-err-inv-user-id 37) (:gpg-err-unexpected 38) (:gpg-err-time-conflict 39) (:gpg-err-keyserver 40) (:gpg-err-wrong-pubkey-algo 41) (:gpg-err-tribute-to-d-a 42) (:gpg-err-weak-key 43) (:gpg-err-inv-keylen 44) (:gpg-err-inv-arg 45) (:gpg-err-bad-uri 46) (:gpg-err-inv-uri 47) (:gpg-err-network 48) (:gpg-err-unknown-host 49) (:gpg-err-selftest-failed 50) (:gpg-err-not-encrypted 51) (:gpg-err-not-processed 52) (:gpg-err-unusable-pubkey 53) (:gpg-err-unusable-seckey 54) (:gpg-err-inv-value 55) (:gpg-err-bad-cert-chain 56) (:gpg-err-missing-cert 57) (:gpg-err-no-data 58) (:gpg-err-bug 59) (:gpg-err-not-supported 60) (:gpg-err-inv-op 61) (:gpg-err-timeout 62) (:gpg-err-internal 63) (:gpg-err-eof-gcrypt 64) (:gpg-err-inv-obj 65) (:gpg-err-too-short 66) (:gpg-err-too-large 67) (:gpg-err-no-obj 68) (:gpg-err-not-implemented 69) (:gpg-err-conflict 70) (:gpg-err-inv-cipher-mode 71) (:gpg-err-inv-flag 72) (:gpg-err-inv-handle 73) (:gpg-err-truncated 74) (:gpg-err-incomplete-line 75) (:gpg-err-inv-response 76) (:gpg-err-no-agent 77) (:gpg-err-agent 78) (:gpg-err-inv-data 79) (:gpg-err-assuan-server-fault 80) (:gpg-err-assuan 81) (:gpg-err-inv-session-key 82) (:gpg-err-inv-sexp 83) (:gpg-err-unsupported-algorithm 84) (:gpg-err-no-pin-entry 85) (:gpg-err-pin-entry 86) (:gpg-err-bad-pin 87) (:gpg-err-inv-name 88) (:gpg-err-bad-data 89) (:gpg-err-inv-parameter 90) (:gpg-err-wrong-card 91) (:gpg-err-no-dirmngr 92) (:gpg-err-dirmngr 93) (:gpg-err-cert-revoked 94) (:gpg-err-no-crl-known 95) (:gpg-err-crl-too-old 96) (:gpg-err-line-too-long 97) (:gpg-err-not-trusted 98) (:gpg-err-canceled 99) (:gpg-err-bad-ca-cert 100) (:gpg-err-cert-expired 101) (:gpg-err-cert-too-young 102) (:gpg-err-unsupported-cert 103) (:gpg-err-unknown-sexp 104) (:gpg-err-unsupported-protection 105) (:gpg-err-corrupted-protection 106) (:gpg-err-ambiguous-name 107) (:gpg-err-card 108) (:gpg-err-card-reset 109) (:gpg-err-card-removed 110) (:gpg-err-inv-card 111) (:gpg-err-card-not-present 112) (:gpg-err-no-pkcs15-app 113) (:gpg-err-not-confirmed 114) (:gpg-err-configuration 115) (:gpg-err-no-policy-match 116) (:gpg-err-inv-index 117) (:gpg-err-inv-id 118) (:gpg-err-no-scdaemon 119) (:gpg-err-scdaemon 120) (:gpg-err-unsupported-protocol 121) (:gpg-err-bad-pin-method 122) (:gpg-err-card-not-initialized 123) (:gpg-err-unsupported-operation 124) (:gpg-err-wrong-key-usage 125) (:gpg-err-nothing-found 126) (:gpg-err-wrong-blob-type 127) (:gpg-err-missing-value 128) (:gpg-err-hardware 129) (:gpg-err-pin-blocked 130) (:gpg-err-use-conditions 131) (:gpg-err-pin-not-synced 132) (:gpg-err-inv-crl 133) (:gpg-err-bad-ber 134) (:gpg-err-inv-ber 135) (:gpg-err-element-not-found 136) (:gpg-err-identifier-not-found 137) (:gpg-err-inv-tag 138) (:gpg-err-inv-length 139) (:gpg-err-inv-keyinfo 140) (:gpg-err-unexpected-tag 141) (:gpg-err-not-der-encoded 142) (:gpg-err-no-cms-obj 143) (:gpg-err-inv-cms-obj 144) (:gpg-err-unknown-cms-obj 145) (:gpg-err-unsupported-cms-obj 146) (:gpg-err-unsupported-encoding 147) (:gpg-err-unsupported-cms-version 148) (:gpg-err-unknown-algorithm 149) (:gpg-err-inv-engine 150) (:gpg-err-pubkey-not-trusted 151) (:gpg-err-decrypt-failed 152) (:gpg-err-key-expired 153) (:gpg-err-sig-expired 154) (:gpg-err-encoding-problem 155) (:gpg-err-inv-state 156) (:gpg-err-dup-value 157) (:gpg-err-missing-action 158) (:gpg-err-module-not-found 159) (:gpg-err-inv-oid-string 160) (:gpg-err-inv-time 161) (:gpg-err-inv-crl-obj 162) (:gpg-err-unsupported-crl-version 163) (:gpg-err-inv-cert-obj 164) (:gpg-err-unknown-name 165) (:gpg-err-locale-problem 166) (:gpg-err-not-locked 167) (:gpg-err-protocol-violation 168) (:gpg-err-inv-mac 169) (:gpg-err-inv-request 170) (:gpg-err-unknown-extn 171) (:gpg-err-unknown-crit-extn 172) (:gpg-err-locked 173) (:gpg-err-unknown-option 174) (:gpg-err-unknown-command 175) (:gpg-err-not-operational 176) (:gpg-err-no-passphrase 177) (:gpg-err-no-pin 178) (:gpg-err-unfinished 199) (:gpg-err-buffer-too-short 200) (:gpg-err-sexp-inv-len-spec 201) (:gpg-err-sexp-string-too-long 202) (:gpg-err-sexp-unmatched-paren 203) (:gpg-err-sexp-not-canonical 204) (:gpg-err-sexp-bad-character 205) (:gpg-err-sexp-bad-quotation 206) (:gpg-err-sexp-zero-prefix 207) (:gpg-err-sexp-nested-dh 208) (:gpg-err-sexp-unmatched-dh 209) (:gpg-err-sexp-unexpected-punc 210) (:gpg-err-sexp-bad-hex-char 211) (:gpg-err-sexp-odd-hex-numbers 212) (:gpg-err-sexp-bad-oct-char 213) (:gpg-err-ass-general 257) (:gpg-err-ass-accept-failed 258) (:gpg-err-ass-connect-failed 259) (:gpg-err-ass-inv-response 260) (:gpg-err-ass-inv-value 261) (:gpg-err-ass-incomplete-line 262) (:gpg-err-ass-line-too-long 263) (:gpg-err-ass-nested-commands 264) (:gpg-err-ass-no-data-cb 265) (:gpg-err-ass-no-inquire-cb 266) (:gpg-err-ass-not-a-server 267) (:gpg-err-ass-not-a-client 268) (:gpg-err-ass-server-start 269) (:gpg-err-ass-read-error 270) (:gpg-err-ass-write-error 271) (:gpg-err-ass-too-much-data 273) (:gpg-err-ass-unexpected-cmd 274) (:gpg-err-ass-unknown-cmd 275) (:gpg-err-ass-syntax 276) (:gpg-err-ass-canceled 277) (:gpg-err-ass-no-input 278) (:gpg-err-ass-no-output 279) (:gpg-err-ass-parameter 280) (:gpg-err-ass-unknown-inquire 281) (:gpg-err-user-1 1024) (:gpg-err-user-2 1025) (:gpg-err-user-3 1026) (:gpg-err-user-4 1027) (:gpg-err-user-5 1028) (:gpg-err-user-6 1029) (:gpg-err-user-7 1030) (:gpg-err-user-8 1031) (:gpg-err-user-9 1032) (:gpg-err-user-10 1033) (:gpg-err-user-11 1034) (:gpg-err-user-12 1035) (:gpg-err-user-13 1036) (:gpg-err-user-14 1037) (:gpg-err-user-15 1038) (:gpg-err-user-16 1039) (:gpg-err-missing-errno 16381) (:gpg-err-unknown-errno 16382) (:gpg-err-eof 16383) ;; The following error codes map system errors. (:gpg-err-e2big (logior +gpg-err-system-error+ 0)) (:gpg-err-eacces (logior +gpg-err-system-error+ 1)) (:gpg-err-eaddrinuse (logior +gpg-err-system-error+ 2)) (:gpg-err-eaddrnotavail (logior +gpg-err-system-error+ 3)) (:gpg-err-eadv (logior +gpg-err-system-error+ 4)) (:gpg-err-eafnosupport (logior +gpg-err-system-error+ 5)) (:gpg-err-eagain (logior +gpg-err-system-error+ 6)) (:gpg-err-ealready (logior +gpg-err-system-error+ 7)) (:gpg-err-eauth (logior +gpg-err-system-error+ 8)) (:gpg-err-ebackground (logior +gpg-err-system-error+ 9)) (:gpg-err-ebade (logior +gpg-err-system-error+ 10)) (:gpg-err-ebadf (logior +gpg-err-system-error+ 11)) (:gpg-err-ebadfd (logior +gpg-err-system-error+ 12)) (:gpg-err-ebadmsg (logior +gpg-err-system-error+ 13)) (:gpg-err-ebadr (logior +gpg-err-system-error+ 14)) (:gpg-err-ebadrpc (logior +gpg-err-system-error+ 15)) (:gpg-err-ebadrqc (logior +gpg-err-system-error+ 16)) (:gpg-err-ebadslt (logior +gpg-err-system-error+ 17)) (:gpg-err-ebfont (logior +gpg-err-system-error+ 18)) (:gpg-err-ebusy (logior +gpg-err-system-error+ 19)) (:gpg-err-ecanceled (logior +gpg-err-system-error+ 20)) (:gpg-err-echild (logior +gpg-err-system-error+ 21)) (:gpg-err-echrng (logior +gpg-err-system-error+ 22)) (:gpg-err-ecomm (logior +gpg-err-system-error+ 23)) (:gpg-err-econnaborted (logior +gpg-err-system-error+ 24)) (:gpg-err-econnrefused (logior +gpg-err-system-error+ 25)) (:gpg-err-econnreset (logior +gpg-err-system-error+ 26)) (:gpg-err-ed (logior +gpg-err-system-error+ 27)) (:gpg-err-edeadlk (logior +gpg-err-system-error+ 28)) (:gpg-err-edeadlock (logior +gpg-err-system-error+ 29)) (:gpg-err-edestaddrreq (logior +gpg-err-system-error+ 30)) (:gpg-err-edied (logior +gpg-err-system-error+ 31)) (:gpg-err-edom (logior +gpg-err-system-error+ 32)) (:gpg-err-edotdot (logior +gpg-err-system-error+ 33)) (:gpg-err-edquot (logior +gpg-err-system-error+ 34)) (:gpg-err-eexist (logior +gpg-err-system-error+ 35)) (:gpg-err-efault (logior +gpg-err-system-error+ 36)) (:gpg-err-efbig (logior +gpg-err-system-error+ 37)) (:gpg-err-eftype (logior +gpg-err-system-error+ 38)) (:gpg-err-egratuitous (logior +gpg-err-system-error+ 39)) (:gpg-err-egregious (logior +gpg-err-system-error+ 40)) (:gpg-err-ehostdown (logior +gpg-err-system-error+ 41)) (:gpg-err-ehostunreach (logior +gpg-err-system-error+ 42)) (:gpg-err-eidrm (logior +gpg-err-system-error+ 43)) (:gpg-err-eieio (logior +gpg-err-system-error+ 44)) (:gpg-err-eilseq (logior +gpg-err-system-error+ 45)) (:gpg-err-einprogress (logior +gpg-err-system-error+ 46)) (:gpg-err-eintr (logior +gpg-err-system-error+ 47)) (:gpg-err-einval (logior +gpg-err-system-error+ 48)) (:gpg-err-eio (logior +gpg-err-system-error+ 49)) (:gpg-err-eisconn (logior +gpg-err-system-error+ 50)) (:gpg-err-eisdir (logior +gpg-err-system-error+ 51)) (:gpg-err-eisnam (logior +gpg-err-system-error+ 52)) (:gpg-err-el2hlt (logior +gpg-err-system-error+ 53)) (:gpg-err-el2nsync (logior +gpg-err-system-error+ 54)) (:gpg-err-el3hlt (logior +gpg-err-system-error+ 55)) (:gpg-err-el3rst (logior +gpg-err-system-error+ 56)) (:gpg-err-elibacc (logior +gpg-err-system-error+ 57)) (:gpg-err-elibbad (logior +gpg-err-system-error+ 58)) (:gpg-err-elibexec (logior +gpg-err-system-error+ 59)) (:gpg-err-elibmax (logior +gpg-err-system-error+ 60)) (:gpg-err-elibscn (logior +gpg-err-system-error+ 61)) (:gpg-err-elnrng (logior +gpg-err-system-error+ 62)) (:gpg-err-eloop (logior +gpg-err-system-error+ 63)) (:gpg-err-emediumtype (logior +gpg-err-system-error+ 64)) (:gpg-err-emfile (logior +gpg-err-system-error+ 65)) (:gpg-err-emlink (logior +gpg-err-system-error+ 66)) (:gpg-err-emsgsize (logior +gpg-err-system-error+ 67)) (:gpg-err-emultihop (logior +gpg-err-system-error+ 68)) (:gpg-err-enametoolong (logior +gpg-err-system-error+ 69)) (:gpg-err-enavail (logior +gpg-err-system-error+ 70)) (:gpg-err-eneedauth (logior +gpg-err-system-error+ 71)) (:gpg-err-enetdown (logior +gpg-err-system-error+ 72)) (:gpg-err-enetreset (logior +gpg-err-system-error+ 73)) (:gpg-err-enetunreach (logior +gpg-err-system-error+ 74)) (:gpg-err-enfile (logior +gpg-err-system-error+ 75)) (:gpg-err-enoano (logior +gpg-err-system-error+ 76)) (:gpg-err-enobufs (logior +gpg-err-system-error+ 77)) (:gpg-err-enocsi (logior +gpg-err-system-error+ 78)) (:gpg-err-enodata (logior +gpg-err-system-error+ 79)) (:gpg-err-enodev (logior +gpg-err-system-error+ 80)) (:gpg-err-enoent (logior +gpg-err-system-error+ 81)) (:gpg-err-enoexec (logior +gpg-err-system-error+ 82)) (:gpg-err-enolck (logior +gpg-err-system-error+ 83)) (:gpg-err-enolink (logior +gpg-err-system-error+ 84)) (:gpg-err-enomedium (logior +gpg-err-system-error+ 85)) (:gpg-err-enomem (logior +gpg-err-system-error+ 86)) (:gpg-err-enomsg (logior +gpg-err-system-error+ 87)) (:gpg-err-enonet (logior +gpg-err-system-error+ 88)) (:gpg-err-enopkg (logior +gpg-err-system-error+ 89)) (:gpg-err-enoprotoopt (logior +gpg-err-system-error+ 90)) (:gpg-err-enospc (logior +gpg-err-system-error+ 91)) (:gpg-err-enosr (logior +gpg-err-system-error+ 92)) (:gpg-err-enostr (logior +gpg-err-system-error+ 93)) (:gpg-err-enosys (logior +gpg-err-system-error+ 94)) (:gpg-err-enotblk (logior +gpg-err-system-error+ 95)) (:gpg-err-enotconn (logior +gpg-err-system-error+ 96)) (:gpg-err-enotdir (logior +gpg-err-system-error+ 97)) (:gpg-err-enotempty (logior +gpg-err-system-error+ 98)) (:gpg-err-enotnam (logior +gpg-err-system-error+ 99)) (:gpg-err-enotsock (logior +gpg-err-system-error+ 100)) (:gpg-err-enotsup (logior +gpg-err-system-error+ 101)) (:gpg-err-enotty (logior +gpg-err-system-error+ 102)) (:gpg-err-enotuniq (logior +gpg-err-system-error+ 103)) (:gpg-err-enxio (logior +gpg-err-system-error+ 104)) (:gpg-err-eopnotsupp (logior +gpg-err-system-error+ 105)) (:gpg-err-eoverflow (logior +gpg-err-system-error+ 106)) (:gpg-err-eperm (logior +gpg-err-system-error+ 107)) (:gpg-err-epfnosupport (logior +gpg-err-system-error+ 108)) (:gpg-err-epipe (logior +gpg-err-system-error+ 109)) (:gpg-err-eproclim (logior +gpg-err-system-error+ 110)) (:gpg-err-eprocunavail (logior +gpg-err-system-error+ 111)) (:gpg-err-eprogmismatch (logior +gpg-err-system-error+ 112)) (:gpg-err-eprogunavail (logior +gpg-err-system-error+ 113)) (:gpg-err-eproto (logior +gpg-err-system-error+ 114)) (:gpg-err-eprotonosupport (logior +gpg-err-system-error+ 115)) (:gpg-err-eprototype (logior +gpg-err-system-error+ 116)) (:gpg-err-erange (logior +gpg-err-system-error+ 117)) (:gpg-err-eremchg (logior +gpg-err-system-error+ 118)) (:gpg-err-eremote (logior +gpg-err-system-error+ 119)) (:gpg-err-eremoteio (logior +gpg-err-system-error+ 120)) (:gpg-err-erestart (logior +gpg-err-system-error+ 121)) (:gpg-err-erofs (logior +gpg-err-system-error+ 122)) (:gpg-err-erpcmismatch (logior +gpg-err-system-error+ 123)) (:gpg-err-eshutdown (logior +gpg-err-system-error+ 124)) (:gpg-err-esocktnosupport (logior +gpg-err-system-error+ 125)) (:gpg-err-espipe (logior +gpg-err-system-error+ 126)) (:gpg-err-esrch (logior +gpg-err-system-error+ 127)) (:gpg-err-esrmnt (logior +gpg-err-system-error+ 128)) (:gpg-err-estale (logior +gpg-err-system-error+ 129)) (:gpg-err-estrpipe (logior +gpg-err-system-error+ 130)) (:gpg-err-etime (logior +gpg-err-system-error+ 131)) (:gpg-err-etimedout (logior +gpg-err-system-error+ 132)) (:gpg-err-etoomanyrefs (logior +gpg-err-system-error+ 133)) (:gpg-err-etxtbsy (logior +gpg-err-system-error+ 134)) (:gpg-err-euclean (logior +gpg-err-system-error+ 135)) (:gpg-err-eunatch (logior +gpg-err-system-error+ 136)) (:gpg-err-eusers (logior +gpg-err-system-error+ 137)) (:gpg-err-ewouldblock (logior +gpg-err-system-error+ 138)) (:gpg-err-exdev (logior +gpg-err-system-error+ 139)) (:gpg-err-exfull (logior +gpg-err-system-error+ 140)) ) ./libgpg-error-1.7-i686/usr/local/share/common-lisp/source/gpg-error/gpg-error-package.lisp0000644000000000000000000000423611237043717030147 0ustar rootroot;;;; libgpg-error-package.lisp ;;; Copyright (C) 2006 g10 Code GmbH ;;; ;;; This file is part of libgpg-error. ;;; ;;; libgpg-error is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public License ;;; as published by the Free Software Foundation; either version 2.1 of ;;; the License, or (at your option) any later version. ;;; ;;; libgpg-error is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; Lesser General Public License for more details. ;;; ;;; You should have received a copy of the GNU Lesser General Public ;;; License along with libgpg-error; if not, write to the Free ;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ;;; 02111-1307, USA. ;;; Conventions ;;; ;;; Error sources and codes are represented as keywords like ;;; :gpg-err-source-gpg and :gpg-err-unknown-packet. ;;; ;;; Errors are represented as lists '(SOURCE CODE). Other ;;; representations are also accepted in some places. ;;; ;;; The following functions are defined which are not defined in the C API: ;;; gpg-err-source-as-key, gpg-err-source-as-value ;;; gpg-err-code-as-key, gpg-err-code-as-value ;;; gpg-err-canonicalize, gpg-err-as-value ;;; Conversion between keywords and values for error sources and codes. ;;; ;;; The following functions from the C API are omitted: ;;; gpg-strerror-r ;;; ;;; The following features work slightly differently: ;;; *gpg-err-source-default* is a dynamic variable that can be set to ;;; change the default for gpg-error. (defpackage #:gpg-error (:use #:common-lisp #:cffi) (:export :gpg-err-code-as-key :gpg-err-code-as-value :gpg-err-source-as-key :gpg-err-source-as-value :gpg-err-canonicalize :gpg-err-as-value :gpg-err-make :*gpg-err-source-default* :gpg-error :gpg-err-code :gpg-err-source :gpg-strerror :gpg-strsource :gpg-err-code-from-errno :gpg-err-code-to-errno :gpg-err-code-from-syserror :gpg-err-make-from-errno :gpg-error-from-errno :gpg-error-from-syserror)) ./libgpg-error-1.7-i686/usr/local/share/common-lisp/source/gpg-error/gpg-error.asd0000644000000000000000000000243111237043717026351 0ustar rootroot;;; -*- Mode: lisp -*- ;;; Copyright (C) 2006 g10 Code GmbH ;;; ;;; This file is part of libgpg-error. ;;; ;;; libgpg-error is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public License ;;; as published by the Free Software Foundation; either version 2.1 of ;;; the License, or (at your option) any later version. ;;; ;;; libgpg-error is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; Lesser General Public License for more details. ;;; ;;; You should have received a copy of the GNU Lesser General Public ;;; License along with libgpg-error; if not, write to the Free ;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ;;; 02111-1307, USA. (defpackage #:gpg-error-system (:use #:common-lisp #:asdf)) (in-package #:gpg-error-system) (defsystem gpg-error :description "Common error values for all GnuPG components." :author "g10 Code GmbH" :version "1.7" :licence "LGPL" :depends-on ("cffi") :components ((:file "gpg-error-package") (:file "gpg-error-codes" :depends-on ("gpg-error-package")) (:file "gpg-error" :depends-on ("gpg-error-codes")))) ./libgpg-error-1.7-i686/usr/local/share/locale/0000755000000000000000000000000011237043722017546 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/ro/0000755000000000000000000000000011237043721020165 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/ro/LC_MESSAGES/0000755000000000000000000000000011237043721021752 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/ro/LC_MESSAGES/libgpg-error.mo0000644000000000000000000003367311237043717024723 0ustar rootroot 3 $ -7 JX`o)).L[ ky   *9Ym}   )/ 4BHN_t      -; MZu   ,:K^n(}  *:K_w       '; R$`       & 4?H X fp    ' #,?\y - 5B Vdl}/4 G Tap%.F\t ( C ^ y      !3!M!g!!!!!!! ""1" A"L"\"w"" " """"+$$$ $ $$% (%5%J%^%x%%+%%%%&!'&I&a&|&&&& &&& & &')'<'S'"c'''''''' ' ((4(I( [(e(k(p((((((( (( () ) %)1)A) U)b)s)) ))))) ) *$*A*\*l* {*****,* ++)+>+M+_+!u++++++,, (,5,K,\,a,p,w,,, ,,, ,., '-4-G-\-t-- -----.).@.O.`.o.. .....).%/ 8/C/b/}///"//00/030C0V0n000000001.1D1Y1o11111112242!S2$u222222 3 353J3`3t333%3&3&4&=4&d4&4&4&4%5%&5%L5%r5%5%5%5% 606O6n66666 667'37[7 u777"7Vh>ln294Fv_QEN IYekJS:`})XW5m/18K#D(uZU&G=@7fz?cxH *P%$0\s MTip<'w[^|d]ba~6{t" ,y+ OjRqCL!;3r-A.goB%s: warning: could not recognize %s A locale function failedASN.1 module not foundAmbiguous nameBER errorBad CA certificateBad MPI valueBad PINBad PIN methodBad certificateBad certificate chainBad character in S-expressionBad dataBad hexadecimal character in S-expressionBad octadecimal character in S-expressionBad passphraseBad public keyBad quotation in S-expressionBad secret keyBad session keyBad signatureBuffer too shortBugCRL too oldCard errorCard not initializedCard not presentCard removedCard reset requiredCertificate expiredCertificate revokedCertificate too youngChecksum errorConditions of use not satisfiedConfiguration errorConflicting useCorrupted protectionData not encryptedData not processedDecryption failedDirmngrDuplicated valueEOF (gcrypt)Element not foundEncoding problemEnd of fileGPG AgentGPGMEGSTIGeneral errorGnuPGGpgSMHardware problemIdentifier not foundIncomplete lineInternal errorInvalid BERInvalid CMS objectInvalid CRLInvalid CRL objectInvalid IDInvalid MACInvalid OID stringInvalid S-expressionInvalid URIInvalid argumentInvalid armorInvalid attributeInvalid cardInvalid certificate objectInvalid cipher algorithmInvalid cipher modeInvalid crypto engineInvalid dataInvalid digest algorithmInvalid encoding methodInvalid encryption schemeInvalid flagInvalid handleInvalid indexInvalid key infoInvalid key lengthInvalid keyringInvalid lengthInvalid length specifier in S-expressionInvalid nameInvalid objectInvalid operation codeInvalid packetInvalid parameterInvalid passphraseInvalid public key algorithmInvalid requestInvalid responseInvalid session keyInvalid signature classInvalid signature schemeInvalid stateInvalid tagInvalid timeInvalid user IDInvalid valueKSBAKey expiredKeyboxKeyring openKeyserver errorLine too longMissing actionMissing certificateMissing item in objectMissing valueNested display hints in S-expressionNetwork errorNo CMS objectNo CRL knownNo PKCS15 applicationNo SmartCard daemonNo agent runningNo dataNo dirmngrNo pinentryNo policy matchNo public keyNo secret keyNo user IDNo valueNot DER encodedNot confirmedNot foundNot implementedNot lockedNot supportedNot trustedNothing foundNumber is not primeOdd hexadecimal numbers in S-expressionOperation cancelledPIN blockedPINs are not syncedPinentryProtocol violationProvided object is too largeProvided object is too shortPublic key not trustedResources exhaustedResult truncatedS-expression not canonicalSCDSelftest failedSignature expiredSmartCard daemon errorString too long in S-expressionSuccessSyntax errorSyntax error in URITime conflictTimeoutTribute to D. A.Trust DB errorUnexpected errorUnexpected reserved punctuation in S-expressionUnexpected tagUnknown CMS objectUnknown S-expressionUnknown algorithmUnknown compression algorithmUnknown error codeUnknown hostUnknown nameUnknown packetUnknown sourceUnknown system errorUnknown version in packetUnmatched display hintsUnmatched parentheses in S-expressionUnspecified sourceUnsupported CMS objectUnsupported CMS versionUnsupported CRL versionUnsupported algorithmUnsupported certificateUnsupported encodingUnsupported operationUnsupported protectionUnsupported protocolUnusable public keyUnusable secret keyUsage: %s GPG-ERROR [...] User defined error code 1User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined source 1User defined source 2User defined source 3User defined source 4Value not foundWeak encryption keyWrong blob typeWrong cardWrong key usageWrong public key algorithmWrong secret key usedZero prefix in S-expressionagent errordirmngr errorgcryptpinentry errorProject-Id-Version: libgpg-error 1.1 Report-Msgid-Bugs-To: translations@gnupg.org POT-Creation-Date: 2008-11-12 14:44+0100 PO-Revision-Date: 2005-06-30 12:00-0500 Last-Translator: Laurentiu Buzdugan Language-Team: Romanian MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %s: avertisment: nu am putut recunoate %s O funcie locale a euatModulul ASN.1 nu a fost gsitNume ambiguuEroare BERCertificat CA incorectValoare MPI incorectPIN incorectMetod PIN incorectCertificat incorectLan certificate incorectCaracter invalid n expresia-SDate incorecteCaracter hexazecimal incorect n expresia-SCaracter octal incorect n expresia-SFraz-parol incorectCheie public incorectGhilimele incorecte n expresia-SCheie secret incorectCheie de sesiune incorectSemntur incorectBuffer prea scurtBugCRL prea vechiEroare cardCard neiniializatCardul nu este prezentCard scosEste necesar resetarea carduluiCertificat expiratCertificat revocatCertificat prea recentEroare checksumCondiii de folosire nesatisfcuteEroare de configurareFolosire n conflictProtecie coruptDate necifrateDate neprocesateDecriptarea a euatDirmngrValoare dublEOF (gcrypt)Elementul nu a fost gsitProblem de encodareSfrit de fiierGPG AgentGPGMEGSTIEroare generalGnuPGGpgSMProblem hardwareIdentificator nu a fost gsitLinie incompletEroare internBER invalidObiect CMS invalidCRL invalidObiect CRL invalidID invalidMAC invalidir OID invalidExpresie-S invalidURI incorectArgument invalidArmur invalidArgument invalidCard invalidObiect certificat incorectAlgoritm cifrare invalidMod cifru invalidMotor cifrare invalidDate invalideAlgoritm rezumat invalidValoare de encodare invalidSchem de cifrare invalidAtribut invalidHandle invalidIndex invalidInformaii cheie invalideLungime cheie invalidInel de chei invalidLungime invalidSpecificarea lungimii invalid n expresia-SNume invalidObiect invalidCod operaie invalidPachet invalidParametru invalidFraz-parol invalidAlgoritm cu cheie public invalidCerere invalidRspuns invalidCheie de sesiune invalidClas semnturi invalidSchem de semnturi invalidStare invalidEtichet invalidTimp invalidID utilizator invalidValoare invalidKSBACheie expiratKeyboxInel de chei deschisEroare server de cheiLinie prea lungAciune lipsCertificat lipsArticol lips n obiectValoare lipsIndicaii de afiare ncuibrite n expresia-SEroare reeaNici un obiect CMSNici un CRL cunoscutNici o aplicaie PKCS15Nici un daemon SmartCardNu ruleaz nici un agentNici o datNici un dirmngrNici introducere pin (pinentry)Nici o potrivire de politiciNici o cheie publicNici o cheie secretNici un ID utilizator.Nici o valoareNu e encodat DERNeconfirmat()Nu a fost gsit()Nu a fost implementat()Neforat()Nu este suportat()Nu este de ncredereNu a fost gsit nimicNumrul nu este primNumere hexazecimale ciudate n expresia-SOperaiune anulatPIN blocatPIN-urile nu sunt sincronizateIntroducere pin (pinentry)Violare de protocolObiectul furnizat e prea largObiectul furnizat e prea scurtCheia public nu este de ncredereResurse epuizateRezultat invalidExpresia-S nu este canonicSCDAuto-test euatSemntur expiratEroare daemon SmartCardir prea lung n expresia-SSuccesEroare de sintaxEroare de sintax n URIConflict de timpPauzTribut lui D. A.Eroare baz de date ncredereEroare neateptatPunctuaie rezervat neateptat n expresia-SEtichet neateptatObiect CMS necunoscutExpresie-S necunoscutAlgoritm necunoscutAlgoritm compresie necunoscutCod de eroare necunoscutGazd necunoscutNume necunoscutPachet necunoscutSurs necunoscutEroare de sistem necunoscutversiune necunoscut n pachetIndicaii de afiare fr perecheParantez fr pereche n expresia-SSurs nespecificatObiect CMS nesuportatVersiune CMS nesuportatVersiune CRL nesuportatAlgoritm nesuportatCertificat nesuportatEncodare nesuportatOperaie nesuportatProtecie nesuportatProtocol nesuportatCheie public de nefolositcheie secret de nefolositFolosire: %s EROARE-GPG [...] Cod de eroare definit de utilizator 1Cod de eroare definit de utilizator 10Cod de eroare definit de utilizator 11Cod de eroare definit de utilizator 12Cod de eroare definit de utilizator 13Cod de eroare definit de utilizator 14Cod de eroare definit de utilizator 15Cod de eroare definit de utilizator 16Cod de eroare definit de utilizator 2Cod de eroare definit de utilizator 3Cod de eroare definit de utilizator 4Cod de eroare definit de utilizator 5Cod de eroare definit de utilizator 6Cod de eroare definit de utilizator 7Cod de eroare definit de utilizator 8Cod de eroare definit de utilizator 9Surs definit de utilizator 1Surs definit de utilizator 2Surs definit de utilizator 3Surs definit de utilizator 4Valoarea nu a fost gsitCheie de cifrare slabTip de blob incorectCard greitFolosire cheie greitAlgoritm cheie public greitA fost folosit o cheie secret greitPrefix zero n expresia-Seroare agenteroare dirmngrgcrypteroare introducere pin (pinentry) ./libgpg-error-1.7-i686/usr/local/share/locale/fr/0000755000000000000000000000000011237043721020154 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/fr/LC_MESSAGES/0000755000000000000000000000000011237043721021741 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/fr/LC_MESSAGES/libgpg-error.mo0000644000000000000000000003424011237043717024701 0ustar rootroot3 $. =G Zhp)) />\k {   $:Ii}  # /9? DRX^o      , =K ]j  - <J[n~(  :J[o        (/>R i w       &1: J Xb r }  ' 1Nk '4 HV^o~/&AT f s%5Mc{ / J e      ! !:!T!n!!!!!!!"$"8" H"S"c"~"" " """L"1-$_$~$ $ $$$ $$%%'2%Z%4k%4%%%3&9&P&i&|&&&&&&&&&'''<'R'"o'''''''(( ,(9(O(d( s(}((((((((( (( )) 2) >)K)_) u))))))")**6*G*g*******+#+25+ h+u+++++$+,,%,>,[,y,,,,,, ,,,,- )-5-F-Z-z------!- ..,.#<.`.u.. .. . ... . //&//B/r/ //////#020H0[0v0z000(00001+1<1M1g16y11111!12;2Q2 d2 r2~2222023363S3q3333334494)U4*4*4*4*5*+5*V5*5)5)5)6)*6)T6)~6)6)6#6# 7#D7#h777777#7#8!C8e8t888Vh>lo294Fv_QEN IYekJS:`})XW5m/18K#D(uZU&G=@7fzn?cxH *P%$0\s MTiq<'w[^|d]ba~6{t" ,y+ OjRrCL!;3-A.gpB%s: warning: could not recognize %s A locale function failedASN.1 module not foundAmbiguous nameBER errorBad CA certificateBad MPI valueBad PINBad PIN methodBad certificateBad certificate chainBad character in S-expressionBad dataBad hexadecimal character in S-expressionBad octadecimal character in S-expressionBad passphraseBad public keyBad quotation in S-expressionBad secret keyBad session keyBad signatureBuffer too shortBugCRL too oldCard errorCard not initializedCard not presentCard removedCard reset requiredCertificate expiredCertificate revokedCertificate too youngChecksum errorConditions of use not satisfiedConfiguration errorConflicting useCorrupted protectionData not encryptedData not processedDecryption failedDirmngrDuplicated valueEOF (gcrypt)Element not foundEncoding problemEnd of fileGPG AgentGPGMEGSTIGeneral errorGnuPGGpgSMHardware problemIdentifier not foundIncomplete lineInternal errorInvalid BERInvalid CMS objectInvalid CRLInvalid CRL objectInvalid IDInvalid MACInvalid OID stringInvalid S-expressionInvalid URIInvalid argumentInvalid armorInvalid attributeInvalid cardInvalid certificate objectInvalid cipher algorithmInvalid cipher modeInvalid crypto engineInvalid dataInvalid digest algorithmInvalid encoding methodInvalid encryption schemeInvalid flagInvalid handleInvalid indexInvalid key infoInvalid key lengthInvalid keyringInvalid lengthInvalid length specifier in S-expressionInvalid nameInvalid objectInvalid operation codeInvalid packetInvalid parameterInvalid passphraseInvalid public key algorithmInvalid requestInvalid responseInvalid session keyInvalid signature classInvalid signature schemeInvalid stateInvalid tagInvalid timeInvalid user IDInvalid valueKSBAKey expiredKeyboxKeyring openKeyserver errorLine too longLockedMissing actionMissing certificateMissing item in objectMissing valueNetwork errorNo CMS objectNo CRL knownNo PKCS15 applicationNo SmartCard daemonNo agent runningNo dataNo dirmngrNo pinentryNo policy matchNo public keyNo secret keyNo user IDNo valueNot DER encodedNot confirmedNot foundNot implementedNot lockedNot supportedNot trustedNothing foundNumber is not primeOdd hexadecimal numbers in S-expressionOperation cancelledPIN blockedPINs are not syncedPinentryProtocol violationProvided object is too largeProvided object is too shortPublic key not trustedResources exhaustedResult truncatedS-expression not canonicalSCDSelftest failedSignature expiredSmartCard daemon errorString too long in S-expressionSuccessSyntax errorSyntax error in URITime conflictTimeoutTribute to D. A.Trust DB errorUnexpected errorUnexpected reserved punctuation in S-expressionUnexpected tagUnknown CMS objectUnknown S-expressionUnknown algorithmUnknown compression algorithmUnknown critical extensionUnknown error codeUnknown extensionUnknown hostUnknown nameUnknown packetUnknown sourceUnknown system errorUnknown version in packetUnmatched parentheses in S-expressionUnspecified sourceUnsupported CMS objectUnsupported CMS versionUnsupported CRL versionUnsupported algorithmUnsupported certificateUnsupported encodingUnsupported operationUnsupported protectionUnsupported protocolUnusable public keyUnusable secret keyUsage: %s GPG-ERROR [...] User defined error code 1User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined source 1User defined source 2User defined source 3User defined source 4Value not foundWeak encryption keyWrong blob typeWrong cardWrong key usageWrong public key algorithmWrong secret key usedZero prefix in S-expressionagent errordirmngr errorgcryptpinentry errorProject-Id-Version: libgpg-error 1.0 Report-Msgid-Bugs-To: translations@gnupg.org POT-Creation-Date: 2008-11-12 14:44+0100 PO-Revision-Date: 2005-08-18 16:48+0100 Last-Translator: Stephane Roy Language-Team: French MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit %s : attention : pourrait ne pas reconnaître %s Une fonction locale a échouéModule ASN.1 non trouvéNom ambigüErreur de BERMauvais CA de certificatMauvaise valeur MPIMauvais PINMauvaise méthode PINMauvais certificatMauvaise chaîne de certificatMauvais caractère dans la S-expressionMauvaise donnéeMauvais caractère hexadécimal dans la S-expressionMauvais caractère octadécimal dans la S-expressionMauvaise phrase de passeMauvaise clé publiqueMauvaise balance de guillemets dans la S-expressionMauvaise clé secrèteMauvaise clé de sessionMauvaise signatureTampon trop courtBogueCRL trop vieuxErreur de carteCarte non initialiséeCarte non présenteCarte enlevéeRé-initialisation de la carte requiseCertificat expiréCertificat révoquéCertificat trop jeuneErreur de somme de contrôleConditions d'usage non satisfaitesErreur de configurationUsage conflictuelProtection corrompueDonnée non cryptéeDonnée non traitéeÉchec de déchiffrageDirmngrValeur dupliquéeEOF (gcrypt)Élément non trouvéProblème d'encodageFin du fichierGPG AgentGPGMEGSTIErreur géneraleGnuPGGpgSMProblème matérielIdentifiant non trouvéLigne incomplèteErreur interneBER invalideObjet CMS invalideCRL invalideObjet CRL invalideID invalideMAC invalideChaine OID invalideS-expression invalideURI invalideArgument invalideArmure invalideAttribut invalideCarte invalideObjet certificat invalideAlgorithme de chiffrement invalideMode de chiffrement invalideMoteur crypto invalideDonnée invalideAlgorithme de résumé invalideMéthode d'encodage invalideSchéma de chiffrement invalideDrapeau invalideGestion non valideIndex invalideInformation de clé invalideLongueur de clé invalidePorte-clés invalideLongueur invalideLongueur spécifiée dans la S-expression invalideNom invalideObjet invalideCode d'opération invalidePaquet invalideParamètre invalidePhrase de passe invalideAlgorithme à clé publique invalideRequête invalideRéponse invalideClé de session invalideClasse de signature invalideSchéma de signature invalideÉtat invalideBalise invalideTemps invalideID d'utilisateur invalideValeur invalideKSBAClé expiréKeyboxPorte-clés ouvertErreur de serveur de cléLigne trop longueVerrouilléAction manquanteCertificat manquantÉlément manquant dans l'objetValeur manquanteErreur réseauPas d'objet CMSPas de CRL connuApplication non PKCS15Pas de service SmartCardPas d'agent en cours d'exécutionPas de donnéesPas de dirmngrPas de pinentryDes directives ne correspondent pasPas de clé publiquePas de clé secrètePas d'ID d'utilisateurPas de valeurNon DER encodéNon confirméNon trouvéNon implémentéNon verrouilléNon supportéPas confianceRien de trouvéCe nombre n'est pas premierNombre hexadécimal impair dans la S-expressionOpération annuléePIN bloquéLes PINs ne sont pas synchronesPinentryViolation de protocoleL'objet fourni est trop grandL'objet fourni est trop petitPas confiance dans la clé publiqueRessources épuiséesRésultat tronquéS-expression non canoniqueSCDAutotest échouéSignature expiréErreur de service SmartCardChaîne trop longue dans la S-expressionSuccèsErreur de syntaxeErreur de syntaxe dans l'URIConflit de tempsDélai d'attenteHommage à D. A.Erreur de DB de confianceErreur inattenduePonctuation réservée inattendue dans la S-expressionBalise inattendueObjet CMS inconnuS-expression inconnueAlgorithme inconnuAlgorithme de compression inconnuExtension critique inconnueCode d'erreur inconnuExtension inconnueHôte inconnuNon inconnuPaquet inconnuSource inconnueErreur système inconnueVersion inconnue dans le paquetParenthèses non balancées dans la S-expressionSource non spécifiéeObjet CMS non supportéVersion de CMS non supportéVersion de CRL non supportéeAlgorithme non supportéCertificat non supportéCodage non supportéOpération non supportéeProtection non supportéeProtocole non supportéClé publique inutilisableClé privée inutilisableUsage : %s GPG-ERROR [...] Code d'erreur 1 défini par l'utilisateurCode d'erreur 10 défini par l'utilisateurCode d'erreur 11 défini par l'utilisateurCode d'erreur 12 défini par l'utilisateurCode d'erreur 13 défini par l'utilisateurCode d'erreur 14 défini par l'utilisateurCode d'erreur 15 défini par l'utilisateurCode d'erreur 16 défini par l'utilisateurCode d'erreur 2 défini par l'utilisateurCode d'erreur 3 défini par l'utilisateurCode d'erreur 4 défini par l'utilisateurCode d'erreur 5 défini par l'utilisateurCode d'erreur 6 défini par l'utilisateurCode d'erreur 7 défini par l'utilisateurCode d'erreur 8 défini par l'utilisateurCode d'erreur 9 défini par l'utilisateurSource 1 définie par l'utilisateurSource 2 définie par l'utilisateurSource 3 définie par l'utilisateurSource 4 définie par l'utilisateurValeur non trouvéeClé de chiffrement faibleMauvais type de blobMauvaise carteMauvaise utilisation de la cléMauvais algorithme à clé publiqueMauvaise clé secrète utiliséPréfixe nul dans la S-expressionerreur d'agentErreur de dirmngrgcrypterreur de pinentry./libgpg-error-1.7-i686/usr/local/share/locale/pl/0000755000000000000000000000000011237043721020160 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/pl/LC_MESSAGES/0000755000000000000000000000000011237043721021745 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/pl/LC_MESSAGES/libgpg-error.mo0000644000000000000000000004056111237043717024710 0ustar rootroot[ x$y   *:Pn)w) &4E I U`u (8M`s    $*0AXt ". AM `k    2F \i  (! JWf} 4 B N[ ky     5C$W |    #> Wc s       $ 2 'F n       !+!?!P!k!o!!!!! !!! """:"K"Z"q"/""""""###3#Q#l## # ######$%$E$d$w$$$$$$%%.%C%W%k%%%%%% &'&B&]&w&&&&&&'-'C'Y'o'''' ''''( !( -(;(B(yQ()$)***@*O*X*m* ***** *&*"+ =+J+a+++++ ++ ++,,(,=,O,d,z,,,,,,, -5-=-P-f-}- - ----- ----).,.*L.w......$./!/1/H/X/o///// //00.0@0_0{0"00001101C1V1t111-1112(2;2P2'b22222233*3%;3a3%u33 3333"34 4 4(4=4 V4d434 44 4445 5)*5 T5a5+55 555 66 ?6M6`6w666666 66747R7e7u77#77!7!7828D8S8n8r888 88 8899*9 >9 _9m999.999 : :7:L:^:q:::: :::;;";8;&S;#z;);;;;<(<@<Z<s<<<<<<*=+?=+k=+=+=+=+>+G>*s>*>*>*>*?*J?*u?*?'?'?'@'C@k@@@@@'@"A&A CA OA\A cA'DclVh57W gJ>%{/(`eB fd)k~6 $\Ny[S }^4_ 0RrF"3;AT<iMOEvZ8t1?I#=s9HGCnbX|&:QY aP]uqLwxoUz!.2j,mp-@K*+%s: warning: could not recognize %s A locale function failedASN.1 module not foundAmbiguous nameAny sourceBER errorBad CA certificateBad MPI valueBad PINBad PIN methodBad certificateBad certificate chainBad character in S-expressionBad dataBad hexadecimal character in S-expressionBad octadecimal character in S-expressionBad passphraseBad public keyBad quotation in S-expressionBad secret keyBad session keyBad signatureBuffer too shortBugCRL too oldCard errorCard not initializedCard not presentCard removedCard reset requiredCertificate expiredCertificate revokedCertificate too youngChecksum errorConditions of use not satisfiedConfiguration errorConflicting useCorrupted protectionData not encryptedData not processedDecryption failedDirmngrDuplicated valueEOF (gcrypt)Element not foundEncoding problemEnd of fileGPG AgentGPGMEGSTIGeneral Assuan errorGeneral IPC errorGeneral errorGnuPGGpgSMHardware problemIPC accept call failedIPC call has been cancelledIPC connect call failedIPC parameter errorIPC read errorIPC syntax errorIPC write errorIdentifier not foundIncomplete lineIncomplete line passed to IPCInternal errorInvalid BERInvalid CMS objectInvalid CRLInvalid CRL objectInvalid IDInvalid IPC responseInvalid MACInvalid OID stringInvalid S-expressionInvalid URIInvalid argumentInvalid armorInvalid attributeInvalid cardInvalid certificate objectInvalid cipher algorithmInvalid cipher modeInvalid crypto engineInvalid dataInvalid digest algorithmInvalid encoding methodInvalid encryption schemeInvalid flagInvalid handleInvalid indexInvalid key infoInvalid key lengthInvalid keyringInvalid lengthInvalid length specifier in S-expressionInvalid nameInvalid objectInvalid operation codeInvalid packetInvalid parameterInvalid passphraseInvalid public key algorithmInvalid requestInvalid responseInvalid session keyInvalid signature classInvalid signature schemeInvalid stateInvalid tagInvalid timeInvalid user IDInvalid valueInvalid value passed to IPCKSBAKey expiredKeyboxKeyring openKeyserver errorLine passed to IPC too longLine too longLockedMissing actionMissing certificateMissing item in objectMissing valueNested IPC commandsNested display hints in S-expressionNetwork errorNo CMS objectNo CRL knownNo PKCS15 applicationNo SmartCard daemonNo agent runningNo dataNo data callback in IPCNo dirmngrNo input source for IPCNo inquire callback in IPCNo output source for IPCNo pinentryNo policy matchNo public keyNo secret keyNo user IDNo valueNot DER encodedNot an IPC clientNot an IPC serverNot confirmedNot foundNot implementedNot lockedNot supportedNot trustedNothing foundNumber is not primeOdd hexadecimal numbers in S-expressionOperation cancelledPIN blockedPINs are not syncedPinentryProblem starting IPC serverProtocol violationProvided object is too largeProvided object is too shortPublic key not trustedResources exhaustedResult truncatedS-expression not canonicalSCDSelftest failedSignature expiredSmartCard daemon errorString too long in S-expressionSuccessSyntax errorSyntax error in URISystem error w/o errnoTime conflictTimeoutToo much data for IPC layerTribute to D. A.Trust DB errorUnexpected IPC commandUnexpected errorUnexpected reserved punctuation in S-expressionUnexpected tagUnknown CMS objectUnknown IPC commandUnknown IPC inquireUnknown S-expressionUnknown algorithmUnknown commandUnknown compression algorithmUnknown critical extensionUnknown error codeUnknown extensionUnknown hostUnknown nameUnknown optionUnknown packetUnknown sourceUnknown system errorUnknown version in packetUnmatched display hintsUnmatched parentheses in S-expressionUnspecific Assuan server faultUnspecified sourceUnsupported CMS objectUnsupported CMS versionUnsupported CRL versionUnsupported algorithmUnsupported certificateUnsupported encodingUnsupported operationUnsupported protectionUnsupported protocolUnusable public keyUnusable secret keyUsage: %s GPG-ERROR [...] User defined error code 1User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined source 1User defined source 2User defined source 3User defined source 4Value not foundWeak encryption keyWrong blob typeWrong cardWrong key usageWrong public key algorithmWrong secret key usedZero prefix in S-expressionagent errordirmngr errorgcryptpinentry errorProject-Id-Version: libgpg-error 1.4 Report-Msgid-Bugs-To: translations@gnupg.org POT-Creation-Date: 2008-11-12 14:44+0100 PO-Revision-Date: 2006-09-15 19:30+0200 Last-Translator: Jakub Bogusz Language-Team: Polish MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 8bit %s: uwaga: nie rozpoznano %s Funkcja lokalizacji nie powioda siNie znaleziono moduu ASN.1Niejednoznaczna nazwaDowolne rdoBd BERBdny certyfikat CABdna warto MPIBdny PINBdna metoda PIN-uBdny certyfikatBdny acuch certyfikatwBdny znak w S-wyraeniuBdne daneBdny znak szesnastkowy w S-wyraeniuBdny znak semkowy w S-wyraeniuBdne hasoBdny klucz publicznyBdne cytowanie w S-wyraeniuBdny klucz tajnyBdny klucz sesjiBdna sygnaturaBufor zbyt mayBd w kodzieCRL zbyt stareBd kartyKarta nie zainicjowanaKarta nieobecnaKarta wycignitaWymagany reset kartyCertyfikat wygasCertyfikat anulowanyCertyfikat zbyt modyBd sumy kontrolnejWarunki uycia nie spenioneBd konfiguracjiKonflikt uyciaUszkodzone zabezpieczenieDane nie zaszyfrowaneDane nie przetworzoneOdszyfrowywanie nie powiodo siDirmngrPowtrzona wartoKoniec pliku (gcrypt)Element nie znalezionyProblem z kodowaniemKoniec plikuAgent GPGGPGMEGSTIBd oglny AssuanaBd oglny IPCBd oglnyGnuPGGpgSMProblem sprztowyWywoanie accept dla IPC nie powiodo siWywoanie IPC zostao anulowaneWywoanie connect dla IPC nie powiodo siBd parametru IPCBd odczytu IPCBd skadni IPCBd zapisu IPCIdentyfikator nie znalezionyNiekompletna liniaNiekompletna linia przekazana do IPCBd wewntrznyNiepoprawne BERNiepoprawny obiekt CMSNiepoprawne CRLNiepoprawny obiekt CRLNiepoprawny identyfikatorNiepoprawna odpowied IPCNiepoprawny MACNiepoprawny acuch OIDNiepoprawne S-wyraenieBdne URINiepoprawny argumentNiepoprawne opakowanieNiepoprawny atrybutNiepoprawna kartaNiepoprawny obiekt certyfikatuNiepoprawny algorytm szyfruNiepoprawny tryb szyfruNiepoprawny silnik kryptograficznyNiepoprawne daneNiepoprawny algorytm skrtuNiepoprawna metoda kodowaniaNiepoprawny ukad szyfrowaniaNiepoprawna flagaNiepoprawny uchwytNiepoprawny indeksNiepoprawna informacja kluczaNiepoprawna dugo kluczaNiepoprawny zbir kluczyNiepoprawna dugoNiepoprawne okrelenie dugoci w S-wyraeniuNiepoprawna nazwaNiepoprawny obiektNiepoprawny kod operacjiNiepoprawny pakietNiepoprawny parametrNiepoprawne hasoNiepoprawny algorytm klucza publicznegoNiepoprawne danieNiepoprawna odpowiedNiepoprawny klucz sesjiNiepoprawna klasa sygnaturyNiepoprawny ukad sygnaturyNiepoprawny stanNiepoprawny znacznikNiepoprawny czasNiepoprawny identyfikator uytkownikaNiepoprawna wartoNiepoprawna warto przekazana do IPCKSBAKlucz wygasKeyboxZbir kluczy otwartyBd serwera kluczyLinia przekazana do IPC zbyt dugaLinia zbyt dugaZablokowanyBrak akcjiBrakujcy certyfikatBrak elementu w obiekcieBrak wartociZagniedone polecenia IPCZagniedone podpowiedzi wywietlania w S-wyraeniuBd sieciBrak obiektu CMSNieznane CRLBrak aplikacji PKCS15Brak demona SmartCardAgent nie uruchomionyBrak danychBrak wywoania zwrotnego dla danych w IPCBrak dirmngrBrak rda wejciowego dla IPCBrak wywoania wstecznego dla zapyta w IPCBrak rda wyjciowego dla IPCBrak pinentryBrak zgodnoci politykiBrak klucza publicznegoBrak klucza tajnegoBrak identyfikatora uytkownikaBrak wartociNie zakodowane DERTo nie jest klient IPCTo nie jest serwer IPCBrak potwierdzeniaNie znalezionoNie zaimplementowaneNie zablokowanyNie obsugiwaneNie zaufanyNic nie znalezionoLiczba nie jest pierwszaNieparzysta liczba cyfr szesnastkowych w S-wyraeniuOperacja anulowanaPIN zablokowanyPIN-y nie zsynchronizowanePinentryProblem z uruchomieniem serwera IPCNaruszenie protokouDostarczony obiekt jest zbyt duyDostarczony obiekt jest zbyt mayKlucz publiczny nie zaufanyZasoby wyczerpaneWynik skrconyS-wyraenie nie kanoniczneSCDTest wewntrzny nie powid siSygnatura wygasaBd demona SmartCardZbyt dugi acuch w S-wyraeniuSukcesBd skadniBd skadni w URIBd systemowy bez errnoKonflikt czasuUpyn limit czasuZbyt duo danych dla warstwy IPCPamici D. A.Bd bazy zaufaniaNieoczekiwane polecenie IPCNieoczekiwany bdNieoczekiwany zarezerwowany znak w S-wyraeniuNieoczekiwany znacznikNieznany obiekt CMSNieznane polecenie IPCNieznane zapytanie IPCNieznane S-wyraenieNieznany algorytmNieznane polecenieNieznany algorytm kompresjiNieznane rozszerzenie krytyczneNieznany kod bduNieznane rozszerzenieNieznany hostNieznana nazwaNieznana opcjaNieznany pakietNieznane rdoNieznany bd systemuNieznana wersja w pakiecieNiedopasowane podpowiedzi wywietlaniaNiedopasowane nawiasy w S-wyraeniuNieokrelone niepowodzenie serwera AssuanNie podane rdoNieobsugiwany obiekt CMSNieobsugiwana wersja CMSNieobsugiwana wersja CRLNieobsugiwany algorytnNieobsugiwany certyfikatNieobsugiwane kodowanieNieobsugiwana operacjaNieobsugiwane zabezpieczenieNieobsugiwany protokBezuyteczny klucz publicznyBezuyteczny klucz tajnySkadnia: %s BD-GPG [...] Zdefiniowany przez uytkownika kod bdu 1Zdefiniowany przez uytkownika kod bdu 10Zdefiniowany przez uytkownika kod bdu 11Zdefiniowany przez uytkownika kod bdu 12Zdefiniowany przez uytkownika kod bdu 13Zdefiniowany przez uytkownika kod bdu 14Zdefiniowany przez uytkownika kod bdu 15Zdefiniowany przez uytkownika kod bdu 16Zdefiniowany przez uytkownika kod bdu 2Zdefiniowany przez uytkownika kod bdu 3Zdefiniowany przez uytkownika kod bdu 4Zdefiniowany przez uytkownika kod bdu 5Zdefiniowany przez uytkownika kod bdu 6Zdefiniowany przez uytkownika kod bdu 7Zdefiniowany przez uytkownika kod bdu 8Zdefiniowany przez uytkownika kod bdu 9Zdefiniowane przez uytkownika rdo 1Zdefiniowane przez uytkownika rdo 2Zdefiniowane przez uytkownika rdo 3Zdefiniowane przez uytkownika rdo 4Warto nie znalezionaSaby klucz szyfrowaniaNiewaciwy typ blobNiewaciwa kartaNiewaciwe uycie kluczaNiewaciwy algorytm klucza publicznegoUyto niewaciwego klucza tajnegoZerowy prefiks w S-wyraeniubd agentaBd dirmngrgcryptBd pinentry./libgpg-error-1.7-i686/usr/local/share/locale/sv/0000755000000000000000000000000011237043721020175 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/sv/LC_MESSAGES/0000755000000000000000000000000011237043721021762 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/sv/LC_MESSAGES/libgpg-error.mo0000644000000000000000000003720211237043717024723 0ustar rootroot[ x$y   *:Pn)w) &4E I U`u (8M`s    $*0AXt ". AM `k    2F \i  (! JWf} 4 B N[ ky     5C$W |    #> Wc s       $ 2 'F n       !+!?!P!k!o!!!!! !!! """:"K"Z"q"/""""""###3#Q#l## # ######$%$E$d$w$$$$$$%%.%C%W%k%%%%%% &'&B&]&w&&&&&&'-'C'Y'o'''' ''''( !( -(;(B(dQ(!)))* !*.*6*N*c*t*****)*) +5+I+`+y++++++++,,&,D,^,x,,+,,, ,- -4-N-V-e-}-- - ----- ---..3.!M.o. . . ...". . // $/0/ D/P/ b/n// //// //00/0 H0U0q000000011"#1 F1T1d1y11111 112202 D2 Q2]2x2 222 222%2343:3J3\3 q33"3 333334 $4/4 J4X4x4444445 5#525E5X5 h5v5 5 5 555!556#!6 E6!S6u6&6%6667$7;7?7[7s777 777 7 77808E8 [8,h8 8888888 9)9 B9P9 a9 n9 z9 9 99999::4:M:g::::::: ;$; >;_;|;;;;;<0<N<k<<<<<<=6=S=p=======>#>=>T> ]>i>p>'DclVh57W gJ>%{/(`eB fd)k~6 $\Ny[S }^4_ 0RrF"3;AT<iMOEvZ8t1?I#=s9HGCnbX|&:QY aP]uqLwxoUz!.2j,mp-@K*+%s: warning: could not recognize %s A locale function failedASN.1 module not foundAmbiguous nameAny sourceBER errorBad CA certificateBad MPI valueBad PINBad PIN methodBad certificateBad certificate chainBad character in S-expressionBad dataBad hexadecimal character in S-expressionBad octadecimal character in S-expressionBad passphraseBad public keyBad quotation in S-expressionBad secret keyBad session keyBad signatureBuffer too shortBugCRL too oldCard errorCard not initializedCard not presentCard removedCard reset requiredCertificate expiredCertificate revokedCertificate too youngChecksum errorConditions of use not satisfiedConfiguration errorConflicting useCorrupted protectionData not encryptedData not processedDecryption failedDirmngrDuplicated valueEOF (gcrypt)Element not foundEncoding problemEnd of fileGPG AgentGPGMEGSTIGeneral Assuan errorGeneral IPC errorGeneral errorGnuPGGpgSMHardware problemIPC accept call failedIPC call has been cancelledIPC connect call failedIPC parameter errorIPC read errorIPC syntax errorIPC write errorIdentifier not foundIncomplete lineIncomplete line passed to IPCInternal errorInvalid BERInvalid CMS objectInvalid CRLInvalid CRL objectInvalid IDInvalid IPC responseInvalid MACInvalid OID stringInvalid S-expressionInvalid URIInvalid argumentInvalid armorInvalid attributeInvalid cardInvalid certificate objectInvalid cipher algorithmInvalid cipher modeInvalid crypto engineInvalid dataInvalid digest algorithmInvalid encoding methodInvalid encryption schemeInvalid flagInvalid handleInvalid indexInvalid key infoInvalid key lengthInvalid keyringInvalid lengthInvalid length specifier in S-expressionInvalid nameInvalid objectInvalid operation codeInvalid packetInvalid parameterInvalid passphraseInvalid public key algorithmInvalid requestInvalid responseInvalid session keyInvalid signature classInvalid signature schemeInvalid stateInvalid tagInvalid timeInvalid user IDInvalid valueInvalid value passed to IPCKSBAKey expiredKeyboxKeyring openKeyserver errorLine passed to IPC too longLine too longLockedMissing actionMissing certificateMissing item in objectMissing valueNested IPC commandsNested display hints in S-expressionNetwork errorNo CMS objectNo CRL knownNo PKCS15 applicationNo SmartCard daemonNo agent runningNo dataNo data callback in IPCNo dirmngrNo input source for IPCNo inquire callback in IPCNo output source for IPCNo pinentryNo policy matchNo public keyNo secret keyNo user IDNo valueNot DER encodedNot an IPC clientNot an IPC serverNot confirmedNot foundNot implementedNot lockedNot supportedNot trustedNothing foundNumber is not primeOdd hexadecimal numbers in S-expressionOperation cancelledPIN blockedPINs are not syncedPinentryProblem starting IPC serverProtocol violationProvided object is too largeProvided object is too shortPublic key not trustedResources exhaustedResult truncatedS-expression not canonicalSCDSelftest failedSignature expiredSmartCard daemon errorString too long in S-expressionSuccessSyntax errorSyntax error in URISystem error w/o errnoTime conflictTimeoutToo much data for IPC layerTribute to D. A.Trust DB errorUnexpected IPC commandUnexpected errorUnexpected reserved punctuation in S-expressionUnexpected tagUnknown CMS objectUnknown IPC commandUnknown IPC inquireUnknown S-expressionUnknown algorithmUnknown commandUnknown compression algorithmUnknown critical extensionUnknown error codeUnknown extensionUnknown hostUnknown nameUnknown optionUnknown packetUnknown sourceUnknown system errorUnknown version in packetUnmatched display hintsUnmatched parentheses in S-expressionUnspecific Assuan server faultUnspecified sourceUnsupported CMS objectUnsupported CMS versionUnsupported CRL versionUnsupported algorithmUnsupported certificateUnsupported encodingUnsupported operationUnsupported protectionUnsupported protocolUnusable public keyUnusable secret keyUsage: %s GPG-ERROR [...] User defined error code 1User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined source 1User defined source 2User defined source 3User defined source 4Value not foundWeak encryption keyWrong blob typeWrong cardWrong key usageWrong public key algorithmWrong secret key usedZero prefix in S-expressionagent errordirmngr errorgcryptpinentry errorProject-Id-Version: libgpg-error 1.4 Report-Msgid-Bugs-To: translations@gnupg.org POT-Creation-Date: 2008-11-12 14:44+0100 PO-Revision-Date: 2007-08-24 13:01+0100 Last-Translator: Daniel Nylander Language-Team: Swedish MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit %s: varning: kände inte igen %s En lokalfunktion misslyckadesASN.1-modulen hittades inteTvetydigt namnAlla källorBER-felFelaktigt CA-certifikatFelaktigt MPI-värdeFelaktig PIN-kodFelaktig PIN-metodFelaktigt certifikatFelaktig certifikatkedjaFelaktigt tecken i S-uttryckFelaktigt dataFelaktigt hexadecimalt tecken i S-uttryckFelaktigt oktadecimalt tecken i S-uttryckFelaktig lösenfrasFelaktig publik nyckelFel citering i S-uttryckFelaktig hemlig nyckelFelaktig sessionsnyckelFelaktig signaturBuffert för litenFelCRL för gammalKortfelKortet är inte initieratKortet inte inmatatKort borttagetNollställning av kort krävsCertifikatet har gått utCertifikatet är spärratCertifikatet är för ungtKontrollsummefelAnvändningsvillkoren tillfredsställs inteKonfigurationsfelKonflikt i användningenSkadat skyddData är inte krypteratData inte behandlatDekryptering misslyckadesDirmngrDubblettvärdeSlut på filen (gcrypt)Elementet hittades inteKodningsproblemSlut på filGPG AgentGPGMEGSTIAllmänt Assuan-felAllmänt IPC-felAllmänt felGnuPGGpgSMHårdvaruproblemIPC-acceptanrop misslyckadesIPC-anropet har avbrutitsIPC-anslutningsanrop misslyckadesIPC-parameterfelIPC-läsfelIPC-syntaxfelIPC-skrivfelIdentifieraren hittades inteOfullständig radOfullständig rad skickad till IPCInternt felOgiltg BEROgiltigt CMS-objektOgiltig CRLOgiltigt CRL-objektOgiltigt idOgiltigt IPC-svarOgiltig MACOgiltig OID-strängOgiltigt S-uttryckOgiltig uriOgiltigt argumentOgiltigt ASCII-skalOgiltigt attributOgiltigt kortOgiltigt certifikatobjektOgiltig chifferalgoritmOgiltigt chifferlägeOgiltig krypteringsmotorOgiltig dataOgiltig sammandragsalgoritmOgiltig kodningsmetodOgiltigt krypteringsschemaOgiltig flaggaOgiltig hanterareOgiltigt indexOgiltig nyckelinformationOgiltig nyckellängdOgiltig nyckelringOgiltig längdOgiltig längdangivare i S-uttryckOgiltigt namnOgiltigt objektOgiltig åtgärdskodOgiltigt paketOgiltig parameterOgiltig lösenfrasOgiltig publik nyckel-algoritmOgiltig begäranOgiltigt svarOgiltig sessionsnyckelOgiltig signaturklassOgiltigt signaturschemaOgiltigt tillståndOgiltig taggOgiltig tidOgiltig användaridentitetOgiltigt värdeOgiltigt värde skickat till IPCKSBANyckeln har gått utNyckellådaNyckelring är öppnadFel i nyckelserverRaden skickad till IPC är för långRaden är för långLåstSaknar åtgärdSaknar certifikatSaknar post i objektSaknar värdeNästlade IPC-kommandonNästlade visningstips i S-uttryckNätverksfelInget CMS-objektIngen känd CRLInget PKCS15-programIngen SmartCard-demonIngen agent körInget dataInget datasvarsanrop i IPCIngen dirmngrIngen inmatningskälla för IPCInget datafrågeanrop i IPCIngen utmatningskälla för IPCIngen PIN-inmatningIngen policyträffIngen publik nyckelIngen hemlig nyckelInget användar-idInget värdeInte DER-kodatInte en IPC-klientInte en IPC-serverInte bekräftadHittades inteInte implementeradInte låstStöds inteInte betroddIngenting hittadesTal är inte ett primtalUdda hexadecimala tal i S-uttryckÅtgärden avbrötsPIN-kod blockeradPIN-koderna är inte synkroniseradePIN-inmatningProblem med att starta IPC-serverProtokollöverträdelseTillhandahållet objekt är för stortTillhandahållet objekt är för kortPublika nyckeln inte betroddResurser överansträngdaResultat nerskalatS-uttryck inte korrektSCDSjälvtestning misslyckadesSignaturen har gått utFel i SmartCard-demonSträng för lång i S-uttryckLyckadesSyntaxfelSyntaxfel i uriSystemfel utan felnummerTidskonfliktTidsgränsFör mycket data för IPC-lagerHyllning till D. A.Fel i tillitsdatabasOväntat IPC-kommandoOväntat felOväntat reserverat skiljetecken i S-uttryckOväntad taggOkänt CMS-objektOkänt IPC-kommandoOkänd IPC-frågaOkänt S-uttryckOkänd algoritmOkänt kommandoOkänd komprimeringsalgoritmOkänd kritiskt tilläggOkänd felkodOkänd utökningOkänd värdOkänt namnOkänd flaggaOkänt paketOkänd källaOkänt systemfelOkänd version i paketOmatchade visningstipsOmatchad parentes i S-uttryckOspecificerat Assuan-serverfelOspecificerad källaCMS-objektet stöds inteCMS-versionen stöds inteCRL-versionen stöds inteAlgoritmen stöds inteCertifikatet stöds inteKodningen stöds inteÅtgärden stöds inteSkyddet stöds inteProtokollet stöds inteOanvändbar publik nyckelOanvändbar hemlig nyckelAnvändning: %s GPG-ERROR [...] Användardefinierad felkod 1Användardefinierad felkod 10Användardefinierad felkod 11Användardefinierad felkod 12Användardefinierad felkod 13Användardefinierad felkod 14Användardefinierad felkod 15Användardefinierad felkod 16Användardefinierad felkod 2Användardefinierad felkod 3Användardefinierad felkod 4Användardefinierad felkod 5Användardefinierad felkod 6Användardefinierad felkod 7Användardefinierad felkod 8Användardefinierad felkod 9Användardefinierad källa 1Användardefinierad källa 2Användardefinierad källa 3Användardefinierad källa 4Värdet hittades inteSvag krypteringsnyckelFelaktig blob-typFel kortFel nyckelanvändningFel publik nyckel-algoritmFel hemlig nyckel användNollprefix i S-uttryckagentfeldirmngr-felgcryptPIN-inmatningsfel./libgpg-error-1.7-i686/usr/local/share/locale/de/0000755000000000000000000000000011237043721020135 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/de/LC_MESSAGES/0000755000000000000000000000000011237043721021722 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/de/LC_MESSAGES/libgpg-error.mo0000644000000000000000000004126611237043717024670 0ustar rootrootD]l$6 E PZ m{)) 3BQo~    #7M\| % 6B FPV[p  ,<Qa      , =K ]j  - <J[n~(  :J[o      & 6@ \jq $    (>Rck    & 1 : J \ n |    ' !)! D!P!d!m!!!!!!""-"1"A"S"j"" """ """" ##3#/D#t########$.$A$ S$ `$m$|$$$$$%$%&%9%P%h%%%%%%%&&-&H&b&}&&&&&''9'S'm''''''((1(G(W(k( {((((( ( (()B),V*)**** **+ ++7+K+c+$++$+&+,#,%9,_,,,,,, ,,-+-@-Z-p- --&---.#.B.a...... .. .... /$/7/;/A/"Y/ |/#/////0"0%70]0 m0{0 00 000011(1<1R1f1v1$1 11122!62X2h2z22222)2 33,3I3Z3o33333334+4<4K4]4 m4444(44 4'4 525 ;5H5]5v55&555556%686 J6V6 t66)666 6! 7-7I7 a7 o7y7777777788*8:8/N8~8#8888$8929E91X999 9999:$':L: S:`:+t::: :::;6;1J;|;;;;;;<#< @<a<x<<<<<<<==.>="m=====>">A>'^>#>>$> >? +?!L?!n?!?!?!?!?!@ :@ [@ |@ @ @ @ A !ABA^AzAAAAA AAB#2BVBrBBBB%A bpmwT<{xCt&V/+ ^lG648a3\rjvZ~!NkEnW|UY KOdcSu7;_$(FPIBi=h@9,D#J}][*H zy0RMge> X')-2".fo1qsQ?:L5`%s: warning: could not recognize %s A locale function failedASN.1 module not foundAmbiguous nameAny sourceBER errorBad CA certificateBad MPI valueBad PINBad PIN methodBad certificateBad certificate chainBad character in S-expressionBad dataBad hexadecimal character in S-expressionBad octadecimal character in S-expressionBad passphraseBad public keyBad quotation in S-expressionBad secret keyBad session keyBad signatureBuffer too shortBugCRL too oldCard errorCard not initializedCard not presentCard removedCard reset requiredCertificate expiredCertificate revokedCertificate too youngChecksum errorConditions of use not satisfiedConfiguration errorConflicting useCorrupted protectionData not encryptedData not processedDecryption failedDirmngrDuplicated valueEOF (gcrypt)Element not foundEncoding problemEnd of fileGPAGPG AgentGPGMEGSTIGeneral Assuan errorGeneral IPC errorGeneral errorGnuPGGpgSMHardware problemIPC accept call failedIPC call has been cancelledIPC connect call failedIPC parameter errorIPC read errorIPC syntax errorIPC write errorIdentifier not foundIncomplete lineIncomplete line passed to IPCInternal errorInvalid BERInvalid CMS objectInvalid CRLInvalid CRL objectInvalid IDInvalid IPC responseInvalid MACInvalid OID stringInvalid S-expressionInvalid URIInvalid argumentInvalid armorInvalid attributeInvalid cardInvalid certificate objectInvalid cipher algorithmInvalid cipher modeInvalid crypto engineInvalid dataInvalid digest algorithmInvalid encoding methodInvalid encryption schemeInvalid flagInvalid handleInvalid indexInvalid key infoInvalid key lengthInvalid keyringInvalid lengthInvalid length specifier in S-expressionInvalid nameInvalid objectInvalid operation codeInvalid packetInvalid parameterInvalid passphraseInvalid public key algorithmInvalid requestInvalid responseInvalid session keyInvalid signature classInvalid signature schemeInvalid stateInvalid tagInvalid timeInvalid user IDInvalid valueInvalid value passed to IPCKSBAKey expiredKeyboxKeyring openKeyserver errorKleopatraLine passed to IPC too longLine too longLockedMissing actionMissing certificateMissing item in objectMissing valueNested IPC commandsNested display hints in S-expressionNetwork errorNo CMS objectNo CRL knownNo PIN givenNo PKCS15 applicationNo SmartCard daemonNo agent runningNo dataNo data callback in IPCNo dirmngrNo input source for IPCNo inquire callback in IPCNo output source for IPCNo passphrase givenNo pinentryNo policy matchNo public keyNo secret keyNo user IDNo valueNot DER encodedNot an IPC clientNot an IPC serverNot confirmedNot foundNot implementedNot lockedNot operationalNot supportedNot trustedNothing foundNumber is not primeOdd hexadecimal numbers in S-expressionOperation cancelledOperation not yet finishedPIN blockedPINs are not syncedPinentryProblem starting IPC serverProtocol violationProvided object is too largeProvided object is too shortPublic key not trustedResources exhaustedResult truncatedS-expression not canonicalSCDSelftest failedSignature expiredSmartCard daemon errorString too long in S-expressionSuccessSyntax errorSyntax error in URISystem error w/o errnoTime conflictTimeoutToo much data for IPC layerTribute to D. A.Trust DB errorUnexpected IPC commandUnexpected errorUnexpected reserved punctuation in S-expressionUnexpected tagUnknown CMS objectUnknown IPC commandUnknown IPC inquireUnknown S-expressionUnknown algorithmUnknown commandUnknown compression algorithmUnknown critical extensionUnknown error codeUnknown extensionUnknown hostUnknown nameUnknown optionUnknown packetUnknown sourceUnknown system errorUnknown version in packetUnmatched display hintsUnmatched parentheses in S-expressionUnspecific Assuan server faultUnspecified sourceUnsupported CMS objectUnsupported CMS versionUnsupported CRL versionUnsupported algorithmUnsupported certificateUnsupported encodingUnsupported operationUnsupported protectionUnsupported protocolUnusable public keyUnusable secret keyUsage: %s GPG-ERROR [...] User defined error code 1User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined source 1User defined source 2User defined source 3User defined source 4Value not foundWeak encryption keyWrong blob typeWrong cardWrong key usageWrong public key algorithmWrong secret key usedZero prefix in S-expressionagent errordirmngr errorgcryptpinentry errorProject-Id-Version: libgpg-error-1.4 Report-Msgid-Bugs-To: translations@gnupg.org POT-Creation-Date: 2008-11-12 14:44+0100 PO-Revision-Date: 2008-11-12 14:45+0100 Last-Translator: Werner Koch Language-Team: none MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit %s: Warnung: %s konnte nicht erkannt werden Eine "locale" Funktion ist fehlgeschlagenASN.1 Modul nicht gefundenMehrdeutiger NameUnspezifische QuelleBER FehlerFehlerhaftes CA-ZertifikatFehlerhafter MPI WertFalsche PINFalsche PIN MethodeFehlerhaftes ZertifikatFehlerhafte ZertifikatketteFehlerhaftes Zeichen in S-expressionFehlerhafte DatenFalsches Hex-Zeichen in S-expressionFalsches Oktal-Zeichen in S-expressionFalsche PassphraseFehlerhafter ffentlicher SchlsselFehlerhafte Zitierung in S-expressionFehlerhafter geheimer SchlsselFehlerhafte SitzungsschlsselFalsche UnterschriftDatenpuffer zu kurzBug (Programmfehler)CRL ist zu altKartenfehlerKarte ist nicht initialisiertKarte nicht vorhandenKarte wurde entferntKarte wurde zurckgesetztZertifikat abgelaufenZertifikat ist widerrufenZertifikat ist noch nicht gltigPrfsummenfehlerNutzungsvorraussetzungen nicht erflltKonfigurationsfehlerZwiespltige BenutzungBeschdigter SchutzDaten sind nicht verschlsseltDaten wurden nicht verarbeitetEntschlsselung fehlgeschlagenDirmngrDoppelter WertEOF (in gcrypt)Element nicht gefundenKodierungsproblemDateiendeGPAGPG AgentGPGMEGSTIAllgemeiner Assuan FehlerAllgemeiner IPC FehlerAllgemeiner FehlerGPGGPGSMProblem mit de HardwareIPC "accept" Aufruf fehlgeschlagenDer IPC Aufruf wurde abgebrochenIPC "connect" Aufruf fehlgeschlagenIPC ParameterfehlerIPC LesefehlerIPC SyntaxfehlerIPC SchreibfehlerIndentifier nicht gefundenUnvollstndige ZeileUnvollstndige Zeile an IPC bergebenInterner FehlerUngltige BERUngltiges CMS ObjektUngltige CRLUngltiges CRL ObjektUngltige IDUngltige IPC AntwortUngltiger MACUngltige OID ZeichenketteUngltige S-expressionUngltiger URIUngltiges ArgumentUngltige ASCII-HlleUngltiges AttributUngltige KarteUngltiges ZertifikatsobjektUngltiges VerschlsselungsverfahrenUngltiger VerschlsselungsmodusUngltige Krypto-EngineUngltige DatenUngltige HashmethodeUngltiges KodierungsverfahrenUngltiges VerschlsselungsschemaUngltiges FlagUngltiger HandleUngltiger IndexUngltige Key-InfoUngltige SchlssellngeUngltiger SchlsselbundUngltige LngeUngltige Lngeangabe in der S-expressionUngltiger NameUngltiges ObjektUngltiger VerarbeitungscodeUngltiges PaketUngltiger ParameterUngltige PassphraseUngltiges Public-Key-VerfahrenUngltiger RequestUngltige AntwortUngltiger SitzungsschlsselUngltige SignaturklasseUngltiges SignaturschemaUngltiger StatusUngltiges "Tag"Ungltige ZeitUngltige User-IDUngltiger WertUngltiger Wert an IPC bergebenKSBASchlssel abgelaufenKeyboxSchlsselbund kann nicht geffnet werdenSchlsselserverfehlerKleopatraAn die IPC bergebene Zeile ist zu langZeile ist zu langGesperrtAktion fehltFehlendes ZertifikatFehlendes Feld im ObjektFehlender WertVerschachtelte IPC KommandosVerschachtelte "Hints" in S-expressionNetzwerkfehlerKein CMS ObjektKeine CRL bekanntKeine PIN angegebenKein PKCS#15 AnwendungKein Karten-DaemonAgent luft nichtKeine DatenKein Daten vom IPC "Callback"Kein DirmngrEingabequelle fr IPC fehltKein "Inquire" "Callback" fr IPC gesetztAusgabesenke fr IPC fehltKeine Passphrase angegebenKein PinentryRichtlinien stimmen nicht bereinKein ffentlicher SchlsselKein geheimer SchlsselKeine User-IDKein WertNicht DER kodiertKein IPC ClientKein IPC ServerNicht besttigtNicht gefundenNich implementiertNicht gesperrtNicht betriebsbereitNicht untersttztNicht vertrauenswrdigNichts gefundenZahl ist nicht primUngerade Anzahl von Hex-Zeichen in S-expressionVerarbeitung wurde abgebrochenVerarbeitung ist noch nicht beendetPIN ist blockiertPINs sind nicht syncronsiertPinentryProblem beim Starten des IPC ServersProtokollverletzungObjekt ist zu groObjekt ist zu kurzffentlicher Schlssel ist nicht vertrauenswrdigRessourcen erschpftAusgabe abgeschnittenS-expression ist nicht kanonischSCDSelbstprfung fehlgeschlagenUnterschrift abgelaufenFehler im Karten-DaemonZeichenkette in S-expression zu langErfolgSyntaxfehlerSyntaxfehler im URISystemfehler ohne gesetzten SytemfehlercodeZeitangaben differierenZeitberschreitungZu viele Daten fr das IPC EbeneTribut an D. A.Fehler in der 'Trust'-DatenbankUnerwartetes IPC KommandoUnerwarteter FehlerUnerwartetes reserviertes Zeichen in S-expressionUnerwartetes "Tag"Unbekanntes CMS ObjektUnbekanntes IPC KommandoUnbekanntes IPC "Inquire"Unbekannte S-expressionUnbekanntes VerfahrenUnbekanntes KommandoUnbekanntes KomprimierungsverfahrenUnbekannte kritische ErweiterungUnbekannter FehlercodeUnbekannte ErweiterungUnbekannter RechnerUnbekannter NameUnbekannte OptionUnbekanntes PaketUnbekannte QuelleUnbekannter SystemfehlerUnbekannte Version im PaketNicht bereinstimmende "Hints"Nich bereinstimmende Klammern in S-expressionUnspezifischer Assuan ServerfehlerQuelle nicht angegebenNicht untersttztes CMS ObjektNicht untersttzte CMS VersionNicht untersttzte CRL VersionNicht untersttztes VerfahrenNicht untersttztes ZertifikatNicht untersttzte KodierungNicht untersttzte VerarbeitungsaufgabeNicht untersttztes SchutzverfahrenNicht untersttztes ProtokollUnbrauchbarer ffentlicher SchlsselUnbrauchbarer geheimer SchlsselAufruf: %s GPG-FEHLER [...] Benutzerdefinierter Fehlercode 1Benutzerdefinierter Fehlercode 10Benutzerdefinierter Fehlercode 11Benutzerdefinierter Fehlercode 12Benutzerdefinierter Fehlercode 13Benutzerdefinierter Fehlercode 14Benutzerdefinierter Fehlercode 15Benutzerdefinierter Fehlercode 16Benutzerdefinierter Fehlercode 2Benutzerdefinierter Fehlercode 3Benutzerdefinierter Fehlercode 4Benutzerdefinierter Fehlercode 5Benutzerdefinierter Fehlercode 6Benutzerdefinierter Fehlercode 7Benutzerdefinierter Fehlercode 8Benutzerdefinierter Fehlercode 9Benutzerdefinierte Quelle 1Benutzerdefinierte Quelle 2Benutzerdefinierte Quelle 3Benutzerdefinierte Quelle 4Wert nicht gefundenUnsicherer SchlsselFalscher BLOB-TypFalsche KarteFalsche SchlsselnutzungFalsches Public-Key-VerfahrenFalscher geheimer Schlssel benutztNull-Prfix in S-expressionFehler beim AgentenFehler im DirmngrgcryptFehler in der Pinentry./libgpg-error-1.7-i686/usr/local/share/locale/vi/0000755000000000000000000000000011237043722020164 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/vi/LC_MESSAGES/0000755000000000000000000000000011237043722021751 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/locale/vi/LC_MESSAGES/libgpg-error.mo0000644000000000000000000004312611237043717024713 0ustar rootroot[ x$y   *:Pn)w) &4E I U`u (8M`s    $*0AXt ". AM `k    2F \i  (! JWf} 4 B N[ ky     5C$W |    #> Wc s       $ 2 'F n       !+!?!P!k!o!!!!! !!! """:"K"Z"q"/""""""###3#Q#l## # ######$%$E$d$w$$$$$$%%.%C%W%k%%%%%% &'&B&]&w&&&&&&'-'C'Y'o'''' ''''( !( -(;(B(Q(,*,2*!_*** *9***++1+"I+l+/|+-+++.,5,I, a,o,, ,,,,,#,-3-R-l-+-----.3.J.R.d......... ////(//X/&s//// /%/0/ 0P0a0%w00%00!01&1!D1f1|111101)%2'O2+w2282)2.$3S3!j33"3"3"34>04o4!4444)4+)5U5r5%5"5)56#6;6#Y6}63666667&%7L7 \7g7}7#77787 %828Q8k8'8"88;8(9&;9;b9$99 99:*:G:]:x:$::::;;4;E;X;0x;;;;;B;;<.Q</<<<<+ =6=:=K="a='= ===/=> %>&0>W>h>{>>M>??/???Z?o? ??'??? ? ? @ @ (@#5@&Y@#@4@#@@.A+BA+nA(A)A%A$B*8B&cBBB&BBBC;CZCyCCCCCD0DNDlDDDDDDE6ETEjEzEE'E(E-E!F 2F@FGF'DclVh57W gJ>%{/(`eB fd)k~6 $\Ny[S }^4_ 0RrF"3;AT<iMOEvZ8t1?I#=s9HGCnbX|&:QY aP]uqLwxoUz!.2j,mp-@K*+%s: warning: could not recognize %s A locale function failedASN.1 module not foundAmbiguous nameAny sourceBER errorBad CA certificateBad MPI valueBad PINBad PIN methodBad certificateBad certificate chainBad character in S-expressionBad dataBad hexadecimal character in S-expressionBad octadecimal character in S-expressionBad passphraseBad public keyBad quotation in S-expressionBad secret keyBad session keyBad signatureBuffer too shortBugCRL too oldCard errorCard not initializedCard not presentCard removedCard reset requiredCertificate expiredCertificate revokedCertificate too youngChecksum errorConditions of use not satisfiedConfiguration errorConflicting useCorrupted protectionData not encryptedData not processedDecryption failedDirmngrDuplicated valueEOF (gcrypt)Element not foundEncoding problemEnd of fileGPG AgentGPGMEGSTIGeneral Assuan errorGeneral IPC errorGeneral errorGnuPGGpgSMHardware problemIPC accept call failedIPC call has been cancelledIPC connect call failedIPC parameter errorIPC read errorIPC syntax errorIPC write errorIdentifier not foundIncomplete lineIncomplete line passed to IPCInternal errorInvalid BERInvalid CMS objectInvalid CRLInvalid CRL objectInvalid IDInvalid IPC responseInvalid MACInvalid OID stringInvalid S-expressionInvalid URIInvalid argumentInvalid armorInvalid attributeInvalid cardInvalid certificate objectInvalid cipher algorithmInvalid cipher modeInvalid crypto engineInvalid dataInvalid digest algorithmInvalid encoding methodInvalid encryption schemeInvalid flagInvalid handleInvalid indexInvalid key infoInvalid key lengthInvalid keyringInvalid lengthInvalid length specifier in S-expressionInvalid nameInvalid objectInvalid operation codeInvalid packetInvalid parameterInvalid passphraseInvalid public key algorithmInvalid requestInvalid responseInvalid session keyInvalid signature classInvalid signature schemeInvalid stateInvalid tagInvalid timeInvalid user IDInvalid valueInvalid value passed to IPCKSBAKey expiredKeyboxKeyring openKeyserver errorLine passed to IPC too longLine too longLockedMissing actionMissing certificateMissing item in objectMissing valueNested IPC commandsNested display hints in S-expressionNetwork errorNo CMS objectNo CRL knownNo PKCS15 applicationNo SmartCard daemonNo agent runningNo dataNo data callback in IPCNo dirmngrNo input source for IPCNo inquire callback in IPCNo output source for IPCNo pinentryNo policy matchNo public keyNo secret keyNo user IDNo valueNot DER encodedNot an IPC clientNot an IPC serverNot confirmedNot foundNot implementedNot lockedNot supportedNot trustedNothing foundNumber is not primeOdd hexadecimal numbers in S-expressionOperation cancelledPIN blockedPINs are not syncedPinentryProblem starting IPC serverProtocol violationProvided object is too largeProvided object is too shortPublic key not trustedResources exhaustedResult truncatedS-expression not canonicalSCDSelftest failedSignature expiredSmartCard daemon errorString too long in S-expressionSuccessSyntax errorSyntax error in URISystem error w/o errnoTime conflictTimeoutToo much data for IPC layerTribute to D. A.Trust DB errorUnexpected IPC commandUnexpected errorUnexpected reserved punctuation in S-expressionUnexpected tagUnknown CMS objectUnknown IPC commandUnknown IPC inquireUnknown S-expressionUnknown algorithmUnknown commandUnknown compression algorithmUnknown critical extensionUnknown error codeUnknown extensionUnknown hostUnknown nameUnknown optionUnknown packetUnknown sourceUnknown system errorUnknown version in packetUnmatched display hintsUnmatched parentheses in S-expressionUnspecific Assuan server faultUnspecified sourceUnsupported CMS objectUnsupported CMS versionUnsupported CRL versionUnsupported algorithmUnsupported certificateUnsupported encodingUnsupported operationUnsupported protectionUnsupported protocolUnusable public keyUnusable secret keyUsage: %s GPG-ERROR [...] User defined error code 1User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined source 1User defined source 2User defined source 3User defined source 4Value not foundWeak encryption keyWrong blob typeWrong cardWrong key usageWrong public key algorithmWrong secret key usedZero prefix in S-expressionagent errordirmngr errorgcryptpinentry errorProject-Id-Version: libgpg-error 1.4 Report-Msgid-Bugs-To: translations@gnupg.org POT-Creation-Date: 2008-11-12 14:44+0100 PO-Revision-Date: 2007-07-26 12:53+09300 Last-Translator: Clytie Siddall Language-Team: Vietnamese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; X-Generator: LocFactoryEditor 1.7b1 %s: cảnh báo : không thể nhận ra %s Một hàm miền địa phương bị lỗiKhông tìm thấy mô-đun ASN.1Tên mờ hồBất cứ nguồn nàoLỗi BERChứng nhận CA (nhà cầm quyền chứng nhận) saiGiá trị MPI saiPIN saiPhương pháp PIN saiChứng nhận saiDây chứng nhận saiKý tự sai trong biểu thức SDữ liệu saiKý tự thập lục sai trong biểu thức SKý tự bát phân sai trong biểu thức SCụm từ mật khẩu saiKhoá công saiĐoạn trích dẫn sai trong biểu thức SKhoá bí mật saiKhoá phiên chạy saiChữ ký saiVùng đệm quá ngắnLỗiCRL quá cũLỗi bo mạchChưa sở khởi bo mạchKhông có bo mạchBo mạch bị gỡ bỏCần thiết lập lại bo mạchChứng nhận quá hạnChứng nhận bị hủy bỏChứng nhận quá mớiLỗi tổng kiểm traChưa thỏa mãn các điều kiện dùngLỗi cấu hìnhCách sử dụng xung độtSự bảo vệ bị hỏngChưa mật mã dữ liệuChưa xử lý dữ liệuLỗi giải mật mãDirmngrGiá trị trùngKết thúc tập tin (gcrypt)Không tìm thấy yếu tốLỗi mã hoáKết thúc tập tinTác nhân GPGGPGMEGSTILỗi Assuan chungLỗi IPC chungLỗi chungGnuPGGpgSMLỗi phần cứngLời gọi chấp nhận IPC bị lỗiLời gọi IPC bị thôiLời gọi kết nối IPC bị lỗiLỗi tham số IPCLỗi đọc IPCLỗi cú pháp IPCLỗi ghi IPCKhông tìm thấy bộ nhận diệnDòng không hoàn toànDòng không hoàn toàn được gửi cho IPCLỗi nội bộBER không hợp lệĐối tượng CMS không hợp lệCRL không hợp lệĐối tượng CRL không hợp lệID không hợp lệĐáp ứng IPC không hợp lệMAC không hợp lệChuỗi OID không hợp lệBiểu thức S không hợp lệURI không hợp lệĐối số không hợp lệBọc sắt không hợp lệThuộc tính không hợp lệBo mạch không hợp lệĐối tượng chứng nhận không hợp lệThuật toán mật mã không hợp lệChế độ mật mã không hợp lệCơ chế mật mã học không hợp lệDữ liệu không hợp lệThuật toán bộ tóm tắt (digest) không hợp lệPhương pháp mã hoá không hợp lệLược đồ mật mã hoá không hợp lệCờ không hợp lệBộ quản lý không hợp lệChỉ mục không hợp lệThông tin khoá không hợp lệĐộ dài khoá không hợp lệVòng chia khoá không hợp lệĐộ dài không hợp lệChỉ thị độ dài không hợp lệ trong biểu thức STên không hợp lệĐối tượng không hợp lệMã thao tác không hợp lệGói tin không hợp lệTham số không hợp lệCụm từ mật khẩu không hợp lệThuật toán khoá công không hợp lệYêu cầu không hợp lệĐáp ứng không hợp lệKhoá phiên chạy không hợp lệHạng chữ ký không hợp lệLược đồ chữ ký không hợp lệTình trạng không hợp lệThẻ không hợp lệThời gian không hợp lệID người dùng không hợp lệGiá trị không hợp lệGiá trị không hợp lệ được gửi cho IPCKSBAKhoá hết hạnKeyboxVòng chìa khoá đã mởLỗi máy phục vụ khoáDòng quá dài được gửi cho IPCDòng quá dàiBị khoáThiếu hành độngChứng nhận còn thiếuThiếu mục trong đối tượngThiếu giá trịCác lệnh IPC lồng nhauCó mẹo hiển thị lồng nhau trong biểu thức SLỗi mạngKhông có đối tượng CMSKhông co CRL đã biếtKhông có ứng dụng PKCS15Không có trình nền Bo Mạch KhéoKhông có tác nhân đang chạyKhông có dữ liệuKhông có lời gọi ngược lại dữ liệu trong IPCKhông có dirmngrKhông có nguồn nhập vào cho IPCKhông có lời gọi ngược lại hỏi thăm trong IPCKhông có nguồn xuất ra cho IPCKhông có pinentryKhông khớp với chính sáchKhông có khoá côngKhông có khoá bí mậtKhông có ID người dùngKhông có giá trịKhông phải mã hoá DERKhông phải trình khách IPCKhông phải trình phục vụ IPCChưa xác nhậnKhông tìm thấyKhông được thực hiệnKhông phải bị khoáKhông được hỗ trợKhông tin cậyKhông tìm thấySố không phải nguyên tốCó số thập lục lẻ trong biểu thức SThao tác bị hủy bỏPIN bị chặnCác PIN chưa đồng bộPinentryGặp khó khăn trong việc khởi chạy trình phục vụ IPCVi phạm giao thứcĐối tượng đã cung cấp là quá lớnĐối tượng đã cung cấp là quá ngắnKhoá công không tin cậyHết tiềm năng hoàn toànKết quả bị cắt ngắnBiểu thức S không phải chuẩn tắcSCDLỗi tự thửChữ ký hết hạnLỗi trình nền Bo Mạch KhéoChuỗi quá dài trong biểu thức SThành côngLỗi cú phápLỗi cú pháp trong URILỗi hệ thống không có số hiệu lỗiGiờ xung độtQuá giờQuá nhiều dữ liệu cho lớp IPCCống cho D. A.Lỗi DB tin cậyLệnh IPC bất thườngGặp lỗi bất thườngCó dấu chấm câu đã dành riêng bất thường trong biểu thức SThẻ bất thườngĐối tượng CMS lạLệnh IPC lạLời hỏi thăm IPC lạBiểu thức S lạThuật toán lạLệnh lạThuật toán nén lạPhần mở rộng nghiêm trọng lạMã lỗi lạPhần mở rộng lạMáy lạTên lạTùy chọn lạGói tin lạNguồn lạGặp lỗi hệ thống không rõGặp phiên bản lạ trong gói tinCó mẹo hiển thị chưa khớpCó dấu ngoặc chưa khớp trong biểu thức SLỗi máy phục vụ Assuan chungNguồn chưa ghi rõĐối tượng CMS không được hỗ trợPhiên bản CMS không được hỗ trợPhiên bản CRL không được hỗ trợThuật toán không được hỗ trợChứng nhận không được hỗ trợBảng mã không được hỗ trợThao tác không được hỗ trợSự bảo vệ không được hỗ trợGiao thức không được hỗ trợKhoá công vô íchKhoá bí mật vô íchCách sử dụng: %s GPG-ERROR [...] Mã lỗi tự xác định 1Mã lỗi tự xác định 10Mã lỗi tự xác định 11Mã lỗi tự xác định 12Mã lỗi tự xác định 13Mã lỗi tự xác định 14Mã lỗi tự xác định 15Mã lỗi tự xác định 16Mã lỗi tự xác định 2Mã lỗi tự xác định 3Mã lỗi tự xác định 4Mã lỗi tự xác định 5Mã lỗi tự xác định 6Mã lỗi tự xác định 7Mã lỗi tự xác định 8Mã lỗi tự xác định 9Nguồn tự xác định 1Nguồn tự xác định 2Nguồn tự xác định 3Nguồn tự xác định 4Không tìm thấy giá trịKhoá mật mã yếuSai kiểu blobBo mạch không đúngSai dùng khoáThuật toán khoá công không đúngĐã dùng khoá bí mật không đúngTiền tố số không trong biểu thức SLỗi tác nhânLỗi dirmngrgcryptLỗi pinentry./libgpg-error-1.7-i686/usr/local/share/aclocal/0000755000000000000000000000000011237043721017704 5ustar rootroot./libgpg-error-1.7-i686/usr/local/share/aclocal/gpg-error.m40000644000000000000000000000472211237043717022064 0ustar rootroot# gpg-error.m4 - autoconf macro to detect libgpg-error. # Copyright (C) 2002, 2003, 2004 g10 Code GmbH # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # This file is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. dnl AM_PATH_GPG_ERROR([MINIMUM-VERSION, dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]]) dnl Test for libgpg-error and define GPG_ERROR_CFLAGS and GPG_ERROR_LIBS dnl AC_DEFUN([AM_PATH_GPG_ERROR], [ AC_ARG_WITH(gpg-error-prefix, AC_HELP_STRING([--with-gpg-error-prefix=PFX], [prefix where GPG Error is installed (optional)]), gpg_error_config_prefix="$withval", gpg_error_config_prefix="") if test x$gpg_error_config_prefix != x ; then if test x${GPG_ERROR_CONFIG+set} != xset ; then GPG_ERROR_CONFIG=$gpg_error_config_prefix/bin/gpg-error-config fi fi AC_PATH_PROG(GPG_ERROR_CONFIG, gpg-error-config, no) min_gpg_error_version=ifelse([$1], ,0.0,$1) AC_MSG_CHECKING(for GPG Error - version >= $min_gpg_error_version) ok=no if test "$GPG_ERROR_CONFIG" != "no" ; then req_major=`echo $min_gpg_error_version | \ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)/\1/'` req_minor=`echo $min_gpg_error_version | \ sed 's/\([[0-9]]*\)\.\([[0-9]]*\)/\2/'` gpg_error_config_version=`$GPG_ERROR_CONFIG $gpg_error_config_args --version` major=`echo $gpg_error_config_version | \ sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'` minor=`echo $gpg_error_config_version | \ sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'` if test "$major" -gt "$req_major"; then ok=yes else if test "$major" -eq "$req_major"; then if test "$minor" -ge "$req_minor"; then ok=yes fi fi fi fi if test $ok = yes; then GPG_ERROR_CFLAGS=`$GPG_ERROR_CONFIG $gpg_error_config_args --cflags` GPG_ERROR_LIBS=`$GPG_ERROR_CONFIG $gpg_error_config_args --libs` AC_MSG_RESULT([yes ($gpg_error_config_version)]) ifelse([$2], , :, [$2]) else GPG_ERROR_CFLAGS="" GPG_ERROR_LIBS="" AC_MSG_RESULT(no) ifelse([$3], , :, [$3]) fi AC_SUBST(GPG_ERROR_CFLAGS) AC_SUBST(GPG_ERROR_LIBS) ]) ./libgpg-error-1.7-i686/usr/local/include/0000755000000000000000000000000011237043721016627 5ustar rootroot./libgpg-error-1.7-i686/usr/local/include/gpg-error.h0000644000000000000000000005424111237043717020717 0ustar rootroot/* Output of mkheader.awk. DO NOT EDIT. */ /* gpg-error.h - Public interface to libgpg-error. Copyright (C) 2003, 2004 g10 Code GmbH This file is part of libgpg-error. libgpg-error is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. libgpg-error is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with libgpg-error; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef GPG_ERROR_H #define GPG_ERROR_H 1 #include #ifdef __GNUC__ #define GPG_ERR_INLINE __inline__ #elif __STDC_VERSION__ >= 199901L #define GPG_ERR_INLINE inline #else #ifndef GPG_ERR_INLINE #define GPG_ERR_INLINE #endif #endif #ifdef __cplusplus extern "C" { #if 0 /* just to make Emacs auto-indent happy */ } #endif #endif /* __cplusplus */ /* The GnuPG project consists of many components. Error codes are exchanged between all components. The common error codes and their user-presentable descriptions are kept into a shared library to allow adding new error codes and components without recompiling any of the other components. The interface will not change in a backward incompatible way. An error code together with an error source build up an error value. As the error value is been passed from one component to another, it preserver the information about the source and nature of the error. A component of the GnuPG project can define the following macro to tune the behaviour of the library: GPG_ERR_SOURCE_DEFAULT: Define to an error source of type gpg_err_source_t to make that source the default for gpg_error(). Otherwise GPG_ERR_SOURCE_UNKNOWN is used as default. */ /* The error source type gpg_err_source_t. Where as the Poo out of a welle small Taketh his firste springing and his sours. --Chaucer. */ /* Only use free slots, never change or reorder the existing entries. */ typedef enum { GPG_ERR_SOURCE_UNKNOWN = 0, GPG_ERR_SOURCE_GCRYPT = 1, GPG_ERR_SOURCE_GPG = 2, GPG_ERR_SOURCE_GPGSM = 3, GPG_ERR_SOURCE_GPGAGENT = 4, GPG_ERR_SOURCE_PINENTRY = 5, GPG_ERR_SOURCE_SCD = 6, GPG_ERR_SOURCE_GPGME = 7, GPG_ERR_SOURCE_KEYBOX = 8, GPG_ERR_SOURCE_KSBA = 9, GPG_ERR_SOURCE_DIRMNGR = 10, GPG_ERR_SOURCE_GSTI = 11, GPG_ERR_SOURCE_GPA = 12, GPG_ERR_SOURCE_KLEO = 13, GPG_ERR_SOURCE_ANY = 31, GPG_ERR_SOURCE_USER_1 = 32, GPG_ERR_SOURCE_USER_2 = 33, GPG_ERR_SOURCE_USER_3 = 34, GPG_ERR_SOURCE_USER_4 = 35, /* This is one more than the largest allowed entry. */ GPG_ERR_SOURCE_DIM = 256 } gpg_err_source_t; /* The error code type gpg_err_code_t. */ /* Only use free slots, never change or reorder the existing entries. */ typedef enum { GPG_ERR_NO_ERROR = 0, GPG_ERR_GENERAL = 1, GPG_ERR_UNKNOWN_PACKET = 2, GPG_ERR_UNKNOWN_VERSION = 3, GPG_ERR_PUBKEY_ALGO = 4, GPG_ERR_DIGEST_ALGO = 5, GPG_ERR_BAD_PUBKEY = 6, GPG_ERR_BAD_SECKEY = 7, GPG_ERR_BAD_SIGNATURE = 8, GPG_ERR_NO_PUBKEY = 9, GPG_ERR_CHECKSUM = 10, GPG_ERR_BAD_PASSPHRASE = 11, GPG_ERR_CIPHER_ALGO = 12, GPG_ERR_KEYRING_OPEN = 13, GPG_ERR_INV_PACKET = 14, GPG_ERR_INV_ARMOR = 15, GPG_ERR_NO_USER_ID = 16, GPG_ERR_NO_SECKEY = 17, GPG_ERR_WRONG_SECKEY = 18, GPG_ERR_BAD_KEY = 19, GPG_ERR_COMPR_ALGO = 20, GPG_ERR_NO_PRIME = 21, GPG_ERR_NO_ENCODING_METHOD = 22, GPG_ERR_NO_ENCRYPTION_SCHEME = 23, GPG_ERR_NO_SIGNATURE_SCHEME = 24, GPG_ERR_INV_ATTR = 25, GPG_ERR_NO_VALUE = 26, GPG_ERR_NOT_FOUND = 27, GPG_ERR_VALUE_NOT_FOUND = 28, GPG_ERR_SYNTAX = 29, GPG_ERR_BAD_MPI = 30, GPG_ERR_INV_PASSPHRASE = 31, GPG_ERR_SIG_CLASS = 32, GPG_ERR_RESOURCE_LIMIT = 33, GPG_ERR_INV_KEYRING = 34, GPG_ERR_TRUSTDB = 35, GPG_ERR_BAD_CERT = 36, GPG_ERR_INV_USER_ID = 37, GPG_ERR_UNEXPECTED = 38, GPG_ERR_TIME_CONFLICT = 39, GPG_ERR_KEYSERVER = 40, GPG_ERR_WRONG_PUBKEY_ALGO = 41, GPG_ERR_TRIBUTE_TO_D_A = 42, GPG_ERR_WEAK_KEY = 43, GPG_ERR_INV_KEYLEN = 44, GPG_ERR_INV_ARG = 45, GPG_ERR_BAD_URI = 46, GPG_ERR_INV_URI = 47, GPG_ERR_NETWORK = 48, GPG_ERR_UNKNOWN_HOST = 49, GPG_ERR_SELFTEST_FAILED = 50, GPG_ERR_NOT_ENCRYPTED = 51, GPG_ERR_NOT_PROCESSED = 52, GPG_ERR_UNUSABLE_PUBKEY = 53, GPG_ERR_UNUSABLE_SECKEY = 54, GPG_ERR_INV_VALUE = 55, GPG_ERR_BAD_CERT_CHAIN = 56, GPG_ERR_MISSING_CERT = 57, GPG_ERR_NO_DATA = 58, GPG_ERR_BUG = 59, GPG_ERR_NOT_SUPPORTED = 60, GPG_ERR_INV_OP = 61, GPG_ERR_TIMEOUT = 62, GPG_ERR_INTERNAL = 63, GPG_ERR_EOF_GCRYPT = 64, GPG_ERR_INV_OBJ = 65, GPG_ERR_TOO_SHORT = 66, GPG_ERR_TOO_LARGE = 67, GPG_ERR_NO_OBJ = 68, GPG_ERR_NOT_IMPLEMENTED = 69, GPG_ERR_CONFLICT = 70, GPG_ERR_INV_CIPHER_MODE = 71, GPG_ERR_INV_FLAG = 72, GPG_ERR_INV_HANDLE = 73, GPG_ERR_TRUNCATED = 74, GPG_ERR_INCOMPLETE_LINE = 75, GPG_ERR_INV_RESPONSE = 76, GPG_ERR_NO_AGENT = 77, GPG_ERR_AGENT = 78, GPG_ERR_INV_DATA = 79, GPG_ERR_ASSUAN_SERVER_FAULT = 80, GPG_ERR_ASSUAN = 81, GPG_ERR_INV_SESSION_KEY = 82, GPG_ERR_INV_SEXP = 83, GPG_ERR_UNSUPPORTED_ALGORITHM = 84, GPG_ERR_NO_PIN_ENTRY = 85, GPG_ERR_PIN_ENTRY = 86, GPG_ERR_BAD_PIN = 87, GPG_ERR_INV_NAME = 88, GPG_ERR_BAD_DATA = 89, GPG_ERR_INV_PARAMETER = 90, GPG_ERR_WRONG_CARD = 91, GPG_ERR_NO_DIRMNGR = 92, GPG_ERR_DIRMNGR = 93, GPG_ERR_CERT_REVOKED = 94, GPG_ERR_NO_CRL_KNOWN = 95, GPG_ERR_CRL_TOO_OLD = 96, GPG_ERR_LINE_TOO_LONG = 97, GPG_ERR_NOT_TRUSTED = 98, GPG_ERR_CANCELED = 99, GPG_ERR_BAD_CA_CERT = 100, GPG_ERR_CERT_EXPIRED = 101, GPG_ERR_CERT_TOO_YOUNG = 102, GPG_ERR_UNSUPPORTED_CERT = 103, GPG_ERR_UNKNOWN_SEXP = 104, GPG_ERR_UNSUPPORTED_PROTECTION = 105, GPG_ERR_CORRUPTED_PROTECTION = 106, GPG_ERR_AMBIGUOUS_NAME = 107, GPG_ERR_CARD = 108, GPG_ERR_CARD_RESET = 109, GPG_ERR_CARD_REMOVED = 110, GPG_ERR_INV_CARD = 111, GPG_ERR_CARD_NOT_PRESENT = 112, GPG_ERR_NO_PKCS15_APP = 113, GPG_ERR_NOT_CONFIRMED = 114, GPG_ERR_CONFIGURATION = 115, GPG_ERR_NO_POLICY_MATCH = 116, GPG_ERR_INV_INDEX = 117, GPG_ERR_INV_ID = 118, GPG_ERR_NO_SCDAEMON = 119, GPG_ERR_SCDAEMON = 120, GPG_ERR_UNSUPPORTED_PROTOCOL = 121, GPG_ERR_BAD_PIN_METHOD = 122, GPG_ERR_CARD_NOT_INITIALIZED = 123, GPG_ERR_UNSUPPORTED_OPERATION = 124, GPG_ERR_WRONG_KEY_USAGE = 125, GPG_ERR_NOTHING_FOUND = 126, GPG_ERR_WRONG_BLOB_TYPE = 127, GPG_ERR_MISSING_VALUE = 128, GPG_ERR_HARDWARE = 129, GPG_ERR_PIN_BLOCKED = 130, GPG_ERR_USE_CONDITIONS = 131, GPG_ERR_PIN_NOT_SYNCED = 132, GPG_ERR_INV_CRL = 133, GPG_ERR_BAD_BER = 134, GPG_ERR_INV_BER = 135, GPG_ERR_ELEMENT_NOT_FOUND = 136, GPG_ERR_IDENTIFIER_NOT_FOUND = 137, GPG_ERR_INV_TAG = 138, GPG_ERR_INV_LENGTH = 139, GPG_ERR_INV_KEYINFO = 140, GPG_ERR_UNEXPECTED_TAG = 141, GPG_ERR_NOT_DER_ENCODED = 142, GPG_ERR_NO_CMS_OBJ = 143, GPG_ERR_INV_CMS_OBJ = 144, GPG_ERR_UNKNOWN_CMS_OBJ = 145, GPG_ERR_UNSUPPORTED_CMS_OBJ = 146, GPG_ERR_UNSUPPORTED_ENCODING = 147, GPG_ERR_UNSUPPORTED_CMS_VERSION = 148, GPG_ERR_UNKNOWN_ALGORITHM = 149, GPG_ERR_INV_ENGINE = 150, GPG_ERR_PUBKEY_NOT_TRUSTED = 151, GPG_ERR_DECRYPT_FAILED = 152, GPG_ERR_KEY_EXPIRED = 153, GPG_ERR_SIG_EXPIRED = 154, GPG_ERR_ENCODING_PROBLEM = 155, GPG_ERR_INV_STATE = 156, GPG_ERR_DUP_VALUE = 157, GPG_ERR_MISSING_ACTION = 158, GPG_ERR_MODULE_NOT_FOUND = 159, GPG_ERR_INV_OID_STRING = 160, GPG_ERR_INV_TIME = 161, GPG_ERR_INV_CRL_OBJ = 162, GPG_ERR_UNSUPPORTED_CRL_VERSION = 163, GPG_ERR_INV_CERT_OBJ = 164, GPG_ERR_UNKNOWN_NAME = 165, GPG_ERR_LOCALE_PROBLEM = 166, GPG_ERR_NOT_LOCKED = 167, GPG_ERR_PROTOCOL_VIOLATION = 168, GPG_ERR_INV_MAC = 169, GPG_ERR_INV_REQUEST = 170, GPG_ERR_UNKNOWN_EXTN = 171, GPG_ERR_UNKNOWN_CRIT_EXTN = 172, GPG_ERR_LOCKED = 173, GPG_ERR_UNKNOWN_OPTION = 174, GPG_ERR_UNKNOWN_COMMAND = 175, GPG_ERR_NOT_OPERATIONAL = 176, GPG_ERR_NO_PASSPHRASE = 177, GPG_ERR_NO_PIN = 178, GPG_ERR_UNFINISHED = 199, GPG_ERR_BUFFER_TOO_SHORT = 200, GPG_ERR_SEXP_INV_LEN_SPEC = 201, GPG_ERR_SEXP_STRING_TOO_LONG = 202, GPG_ERR_SEXP_UNMATCHED_PAREN = 203, GPG_ERR_SEXP_NOT_CANONICAL = 204, GPG_ERR_SEXP_BAD_CHARACTER = 205, GPG_ERR_SEXP_BAD_QUOTATION = 206, GPG_ERR_SEXP_ZERO_PREFIX = 207, GPG_ERR_SEXP_NESTED_DH = 208, GPG_ERR_SEXP_UNMATCHED_DH = 209, GPG_ERR_SEXP_UNEXPECTED_PUNC = 210, GPG_ERR_SEXP_BAD_HEX_CHAR = 211, GPG_ERR_SEXP_ODD_HEX_NUMBERS = 212, GPG_ERR_SEXP_BAD_OCT_CHAR = 213, GPG_ERR_ASS_GENERAL = 257, GPG_ERR_ASS_ACCEPT_FAILED = 258, GPG_ERR_ASS_CONNECT_FAILED = 259, GPG_ERR_ASS_INV_RESPONSE = 260, GPG_ERR_ASS_INV_VALUE = 261, GPG_ERR_ASS_INCOMPLETE_LINE = 262, GPG_ERR_ASS_LINE_TOO_LONG = 263, GPG_ERR_ASS_NESTED_COMMANDS = 264, GPG_ERR_ASS_NO_DATA_CB = 265, GPG_ERR_ASS_NO_INQUIRE_CB = 266, GPG_ERR_ASS_NOT_A_SERVER = 267, GPG_ERR_ASS_NOT_A_CLIENT = 268, GPG_ERR_ASS_SERVER_START = 269, GPG_ERR_ASS_READ_ERROR = 270, GPG_ERR_ASS_WRITE_ERROR = 271, GPG_ERR_ASS_TOO_MUCH_DATA = 273, GPG_ERR_ASS_UNEXPECTED_CMD = 274, GPG_ERR_ASS_UNKNOWN_CMD = 275, GPG_ERR_ASS_SYNTAX = 276, GPG_ERR_ASS_CANCELED = 277, GPG_ERR_ASS_NO_INPUT = 278, GPG_ERR_ASS_NO_OUTPUT = 279, GPG_ERR_ASS_PARAMETER = 280, GPG_ERR_ASS_UNKNOWN_INQUIRE = 281, GPG_ERR_USER_1 = 1024, GPG_ERR_USER_2 = 1025, GPG_ERR_USER_3 = 1026, GPG_ERR_USER_4 = 1027, GPG_ERR_USER_5 = 1028, GPG_ERR_USER_6 = 1029, GPG_ERR_USER_7 = 1030, GPG_ERR_USER_8 = 1031, GPG_ERR_USER_9 = 1032, GPG_ERR_USER_10 = 1033, GPG_ERR_USER_11 = 1034, GPG_ERR_USER_12 = 1035, GPG_ERR_USER_13 = 1036, GPG_ERR_USER_14 = 1037, GPG_ERR_USER_15 = 1038, GPG_ERR_USER_16 = 1039, GPG_ERR_MISSING_ERRNO = 16381, GPG_ERR_UNKNOWN_ERRNO = 16382, GPG_ERR_EOF = 16383, /* The following error codes are used to map system errors. */ #define GPG_ERR_SYSTEM_ERROR (1 << 15) GPG_ERR_E2BIG = GPG_ERR_SYSTEM_ERROR | 0, GPG_ERR_EACCES = GPG_ERR_SYSTEM_ERROR | 1, GPG_ERR_EADDRINUSE = GPG_ERR_SYSTEM_ERROR | 2, GPG_ERR_EADDRNOTAVAIL = GPG_ERR_SYSTEM_ERROR | 3, GPG_ERR_EADV = GPG_ERR_SYSTEM_ERROR | 4, GPG_ERR_EAFNOSUPPORT = GPG_ERR_SYSTEM_ERROR | 5, GPG_ERR_EAGAIN = GPG_ERR_SYSTEM_ERROR | 6, GPG_ERR_EALREADY = GPG_ERR_SYSTEM_ERROR | 7, GPG_ERR_EAUTH = GPG_ERR_SYSTEM_ERROR | 8, GPG_ERR_EBACKGROUND = GPG_ERR_SYSTEM_ERROR | 9, GPG_ERR_EBADE = GPG_ERR_SYSTEM_ERROR | 10, GPG_ERR_EBADF = GPG_ERR_SYSTEM_ERROR | 11, GPG_ERR_EBADFD = GPG_ERR_SYSTEM_ERROR | 12, GPG_ERR_EBADMSG = GPG_ERR_SYSTEM_ERROR | 13, GPG_ERR_EBADR = GPG_ERR_SYSTEM_ERROR | 14, GPG_ERR_EBADRPC = GPG_ERR_SYSTEM_ERROR | 15, GPG_ERR_EBADRQC = GPG_ERR_SYSTEM_ERROR | 16, GPG_ERR_EBADSLT = GPG_ERR_SYSTEM_ERROR | 17, GPG_ERR_EBFONT = GPG_ERR_SYSTEM_ERROR | 18, GPG_ERR_EBUSY = GPG_ERR_SYSTEM_ERROR | 19, GPG_ERR_ECANCELED = GPG_ERR_SYSTEM_ERROR | 20, GPG_ERR_ECHILD = GPG_ERR_SYSTEM_ERROR | 21, GPG_ERR_ECHRNG = GPG_ERR_SYSTEM_ERROR | 22, GPG_ERR_ECOMM = GPG_ERR_SYSTEM_ERROR | 23, GPG_ERR_ECONNABORTED = GPG_ERR_SYSTEM_ERROR | 24, GPG_ERR_ECONNREFUSED = GPG_ERR_SYSTEM_ERROR | 25, GPG_ERR_ECONNRESET = GPG_ERR_SYSTEM_ERROR | 26, GPG_ERR_ED = GPG_ERR_SYSTEM_ERROR | 27, GPG_ERR_EDEADLK = GPG_ERR_SYSTEM_ERROR | 28, GPG_ERR_EDEADLOCK = GPG_ERR_SYSTEM_ERROR | 29, GPG_ERR_EDESTADDRREQ = GPG_ERR_SYSTEM_ERROR | 30, GPG_ERR_EDIED = GPG_ERR_SYSTEM_ERROR | 31, GPG_ERR_EDOM = GPG_ERR_SYSTEM_ERROR | 32, GPG_ERR_EDOTDOT = GPG_ERR_SYSTEM_ERROR | 33, GPG_ERR_EDQUOT = GPG_ERR_SYSTEM_ERROR | 34, GPG_ERR_EEXIST = GPG_ERR_SYSTEM_ERROR | 35, GPG_ERR_EFAULT = GPG_ERR_SYSTEM_ERROR | 36, GPG_ERR_EFBIG = GPG_ERR_SYSTEM_ERROR | 37, GPG_ERR_EFTYPE = GPG_ERR_SYSTEM_ERROR | 38, GPG_ERR_EGRATUITOUS = GPG_ERR_SYSTEM_ERROR | 39, GPG_ERR_EGREGIOUS = GPG_ERR_SYSTEM_ERROR | 40, GPG_ERR_EHOSTDOWN = GPG_ERR_SYSTEM_ERROR | 41, GPG_ERR_EHOSTUNREACH = GPG_ERR_SYSTEM_ERROR | 42, GPG_ERR_EIDRM = GPG_ERR_SYSTEM_ERROR | 43, GPG_ERR_EIEIO = GPG_ERR_SYSTEM_ERROR | 44, GPG_ERR_EILSEQ = GPG_ERR_SYSTEM_ERROR | 45, GPG_ERR_EINPROGRESS = GPG_ERR_SYSTEM_ERROR | 46, GPG_ERR_EINTR = GPG_ERR_SYSTEM_ERROR | 47, GPG_ERR_EINVAL = GPG_ERR_SYSTEM_ERROR | 48, GPG_ERR_EIO = GPG_ERR_SYSTEM_ERROR | 49, GPG_ERR_EISCONN = GPG_ERR_SYSTEM_ERROR | 50, GPG_ERR_EISDIR = GPG_ERR_SYSTEM_ERROR | 51, GPG_ERR_EISNAM = GPG_ERR_SYSTEM_ERROR | 52, GPG_ERR_EL2HLT = GPG_ERR_SYSTEM_ERROR | 53, GPG_ERR_EL2NSYNC = GPG_ERR_SYSTEM_ERROR | 54, GPG_ERR_EL3HLT = GPG_ERR_SYSTEM_ERROR | 55, GPG_ERR_EL3RST = GPG_ERR_SYSTEM_ERROR | 56, GPG_ERR_ELIBACC = GPG_ERR_SYSTEM_ERROR | 57, GPG_ERR_ELIBBAD = GPG_ERR_SYSTEM_ERROR | 58, GPG_ERR_ELIBEXEC = GPG_ERR_SYSTEM_ERROR | 59, GPG_ERR_ELIBMAX = GPG_ERR_SYSTEM_ERROR | 60, GPG_ERR_ELIBSCN = GPG_ERR_SYSTEM_ERROR | 61, GPG_ERR_ELNRNG = GPG_ERR_SYSTEM_ERROR | 62, GPG_ERR_ELOOP = GPG_ERR_SYSTEM_ERROR | 63, GPG_ERR_EMEDIUMTYPE = GPG_ERR_SYSTEM_ERROR | 64, GPG_ERR_EMFILE = GPG_ERR_SYSTEM_ERROR | 65, GPG_ERR_EMLINK = GPG_ERR_SYSTEM_ERROR | 66, GPG_ERR_EMSGSIZE = GPG_ERR_SYSTEM_ERROR | 67, GPG_ERR_EMULTIHOP = GPG_ERR_SYSTEM_ERROR | 68, GPG_ERR_ENAMETOOLONG = GPG_ERR_SYSTEM_ERROR | 69, GPG_ERR_ENAVAIL = GPG_ERR_SYSTEM_ERROR | 70, GPG_ERR_ENEEDAUTH = GPG_ERR_SYSTEM_ERROR | 71, GPG_ERR_ENETDOWN = GPG_ERR_SYSTEM_ERROR | 72, GPG_ERR_ENETRESET = GPG_ERR_SYSTEM_ERROR | 73, GPG_ERR_ENETUNREACH = GPG_ERR_SYSTEM_ERROR | 74, GPG_ERR_ENFILE = GPG_ERR_SYSTEM_ERROR | 75, GPG_ERR_ENOANO = GPG_ERR_SYSTEM_ERROR | 76, GPG_ERR_ENOBUFS = GPG_ERR_SYSTEM_ERROR | 77, GPG_ERR_ENOCSI = GPG_ERR_SYSTEM_ERROR | 78, GPG_ERR_ENODATA = GPG_ERR_SYSTEM_ERROR | 79, GPG_ERR_ENODEV = GPG_ERR_SYSTEM_ERROR | 80, GPG_ERR_ENOENT = GPG_ERR_SYSTEM_ERROR | 81, GPG_ERR_ENOEXEC = GPG_ERR_SYSTEM_ERROR | 82, GPG_ERR_ENOLCK = GPG_ERR_SYSTEM_ERROR | 83, GPG_ERR_ENOLINK = GPG_ERR_SYSTEM_ERROR | 84, GPG_ERR_ENOMEDIUM = GPG_ERR_SYSTEM_ERROR | 85, GPG_ERR_ENOMEM = GPG_ERR_SYSTEM_ERROR | 86, GPG_ERR_ENOMSG = GPG_ERR_SYSTEM_ERROR | 87, GPG_ERR_ENONET = GPG_ERR_SYSTEM_ERROR | 88, GPG_ERR_ENOPKG = GPG_ERR_SYSTEM_ERROR | 89, GPG_ERR_ENOPROTOOPT = GPG_ERR_SYSTEM_ERROR | 90, GPG_ERR_ENOSPC = GPG_ERR_SYSTEM_ERROR | 91, GPG_ERR_ENOSR = GPG_ERR_SYSTEM_ERROR | 92, GPG_ERR_ENOSTR = GPG_ERR_SYSTEM_ERROR | 93, GPG_ERR_ENOSYS = GPG_ERR_SYSTEM_ERROR | 94, GPG_ERR_ENOTBLK = GPG_ERR_SYSTEM_ERROR | 95, GPG_ERR_ENOTCONN = GPG_ERR_SYSTEM_ERROR | 96, GPG_ERR_ENOTDIR = GPG_ERR_SYSTEM_ERROR | 97, GPG_ERR_ENOTEMPTY = GPG_ERR_SYSTEM_ERROR | 98, GPG_ERR_ENOTNAM = GPG_ERR_SYSTEM_ERROR | 99, GPG_ERR_ENOTSOCK = GPG_ERR_SYSTEM_ERROR | 100, GPG_ERR_ENOTSUP = GPG_ERR_SYSTEM_ERROR | 101, GPG_ERR_ENOTTY = GPG_ERR_SYSTEM_ERROR | 102, GPG_ERR_ENOTUNIQ = GPG_ERR_SYSTEM_ERROR | 103, GPG_ERR_ENXIO = GPG_ERR_SYSTEM_ERROR | 104, GPG_ERR_EOPNOTSUPP = GPG_ERR_SYSTEM_ERROR | 105, GPG_ERR_EOVERFLOW = GPG_ERR_SYSTEM_ERROR | 106, GPG_ERR_EPERM = GPG_ERR_SYSTEM_ERROR | 107, GPG_ERR_EPFNOSUPPORT = GPG_ERR_SYSTEM_ERROR | 108, GPG_ERR_EPIPE = GPG_ERR_SYSTEM_ERROR | 109, GPG_ERR_EPROCLIM = GPG_ERR_SYSTEM_ERROR | 110, GPG_ERR_EPROCUNAVAIL = GPG_ERR_SYSTEM_ERROR | 111, GPG_ERR_EPROGMISMATCH = GPG_ERR_SYSTEM_ERROR | 112, GPG_ERR_EPROGUNAVAIL = GPG_ERR_SYSTEM_ERROR | 113, GPG_ERR_EPROTO = GPG_ERR_SYSTEM_ERROR | 114, GPG_ERR_EPROTONOSUPPORT = GPG_ERR_SYSTEM_ERROR | 115, GPG_ERR_EPROTOTYPE = GPG_ERR_SYSTEM_ERROR | 116, GPG_ERR_ERANGE = GPG_ERR_SYSTEM_ERROR | 117, GPG_ERR_EREMCHG = GPG_ERR_SYSTEM_ERROR | 118, GPG_ERR_EREMOTE = GPG_ERR_SYSTEM_ERROR | 119, GPG_ERR_EREMOTEIO = GPG_ERR_SYSTEM_ERROR | 120, GPG_ERR_ERESTART = GPG_ERR_SYSTEM_ERROR | 121, GPG_ERR_EROFS = GPG_ERR_SYSTEM_ERROR | 122, GPG_ERR_ERPCMISMATCH = GPG_ERR_SYSTEM_ERROR | 123, GPG_ERR_ESHUTDOWN = GPG_ERR_SYSTEM_ERROR | 124, GPG_ERR_ESOCKTNOSUPPORT = GPG_ERR_SYSTEM_ERROR | 125, GPG_ERR_ESPIPE = GPG_ERR_SYSTEM_ERROR | 126, GPG_ERR_ESRCH = GPG_ERR_SYSTEM_ERROR | 127, GPG_ERR_ESRMNT = GPG_ERR_SYSTEM_ERROR | 128, GPG_ERR_ESTALE = GPG_ERR_SYSTEM_ERROR | 129, GPG_ERR_ESTRPIPE = GPG_ERR_SYSTEM_ERROR | 130, GPG_ERR_ETIME = GPG_ERR_SYSTEM_ERROR | 131, GPG_ERR_ETIMEDOUT = GPG_ERR_SYSTEM_ERROR | 132, GPG_ERR_ETOOMANYREFS = GPG_ERR_SYSTEM_ERROR | 133, GPG_ERR_ETXTBSY = GPG_ERR_SYSTEM_ERROR | 134, GPG_ERR_EUCLEAN = GPG_ERR_SYSTEM_ERROR | 135, GPG_ERR_EUNATCH = GPG_ERR_SYSTEM_ERROR | 136, GPG_ERR_EUSERS = GPG_ERR_SYSTEM_ERROR | 137, GPG_ERR_EWOULDBLOCK = GPG_ERR_SYSTEM_ERROR | 138, GPG_ERR_EXDEV = GPG_ERR_SYSTEM_ERROR | 139, GPG_ERR_EXFULL = GPG_ERR_SYSTEM_ERROR | 140, /* This is one more than the largest allowed entry. */ GPG_ERR_CODE_DIM = 65536 } gpg_err_code_t; /* The error value type gpg_error_t. */ /* We would really like to use bit-fields in a struct, but using structs as return values can cause binary compatibility issues, in particular if you want to do it effeciently (also see -freg-struct-return option to GCC). */ typedef unsigned int gpg_error_t; /* We use the lowest 16 bits of gpg_error_t for error codes. The 16th bit indicates system errors. */ #define GPG_ERR_CODE_MASK (GPG_ERR_CODE_DIM - 1) /* Bits 17 to 24 are reserved. */ /* We use the upper 8 bits of gpg_error_t for error sources. */ #define GPG_ERR_SOURCE_MASK (GPG_ERR_SOURCE_DIM - 1) #define GPG_ERR_SOURCE_SHIFT 24 /* GCC feature test. */ #undef _GPG_ERR_HAVE_CONSTRUCTOR #if __GNUC__ #define _GPG_ERR_GCC_VERSION (__GNUC__ * 10000 \ + __GNUC_MINOR__ * 100 \ + __GNUC_PATCHLEVEL__) #if _GPG_ERR_GCC_VERSION > 30100 #define _GPG_ERR_CONSTRUCTOR __attribute__ ((__constructor__)) #define _GPG_ERR_HAVE_CONSTRUCTOR #endif #endif #ifndef _GPG_ERR_CONSTRUCTOR #define _GPG_ERR_CONSTRUCTOR #endif /* Initialization function. */ /* Initialize the library. This function should be run early. */ gpg_error_t gpg_err_init (void) _GPG_ERR_CONSTRUCTOR; /* If this is defined, the library is already initialized by the constructor and does not need to be initialized explicitely. */ #undef GPG_ERR_INITIALIZED #ifdef _GPG_ERR_HAVE_CONSTRUCTOR #define GPG_ERR_INITIALIZED 1 #endif /* Constructor and accessor functions. */ /* Construct an error value from an error code and source. Within a subsystem, use gpg_error. */ static GPG_ERR_INLINE gpg_error_t gpg_err_make (gpg_err_source_t source, gpg_err_code_t code) { return code == GPG_ERR_NO_ERROR ? GPG_ERR_NO_ERROR : (((source & GPG_ERR_SOURCE_MASK) << GPG_ERR_SOURCE_SHIFT) | (code & GPG_ERR_CODE_MASK)); } /* The user should define GPG_ERR_SOURCE_DEFAULT before including this file to specify a default source for gpg_error. */ #ifndef GPG_ERR_SOURCE_DEFAULT #define GPG_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_UNKNOWN #endif static GPG_ERR_INLINE gpg_error_t gpg_error (gpg_err_code_t code) { return gpg_err_make (GPG_ERR_SOURCE_DEFAULT, code); } /* Retrieve the error code from an error value. */ static GPG_ERR_INLINE gpg_err_code_t gpg_err_code (gpg_error_t err) { return (gpg_err_code_t) (err & GPG_ERR_CODE_MASK); } /* Retrieve the error source from an error value. */ static GPG_ERR_INLINE gpg_err_source_t gpg_err_source (gpg_error_t err) { return (gpg_err_source_t) ((err >> GPG_ERR_SOURCE_SHIFT) & GPG_ERR_SOURCE_MASK); } /* String functions. */ /* Return a pointer to a string containing a description of the error code in the error value ERR. This function is not thread-safe. */ const char *gpg_strerror (gpg_error_t err); /* Return the error string for ERR in the user-supplied buffer BUF of size BUFLEN. This function is, in contrast to gpg_strerror, thread-safe if a thread-safe strerror_r() function is provided by the system. If the function succeeds, 0 is returned and BUF contains the string describing the error. If the buffer was not large enough, ERANGE is returned and BUF contains as much of the beginning of the error string as fits into the buffer. */ int gpg_strerror_r (gpg_error_t err, char *buf, size_t buflen); /* Return a pointer to a string containing a description of the error source in the error value ERR. */ const char *gpg_strsource (gpg_error_t err); /* Mapping of system errors (errno). */ /* Retrieve the error code for the system error ERR. This returns GPG_ERR_UNKNOWN_ERRNO if the system error is not mapped (report this). */ gpg_err_code_t gpg_err_code_from_errno (int err); /* Retrieve the system error for the error code CODE. This returns 0 if CODE is not a system error code. */ int gpg_err_code_to_errno (gpg_err_code_t code); /* Retrieve the error code directly from the ERRNO variable. This returns GPG_ERR_UNKNOWN_ERRNO if the system error is not mapped (report this) and GPG_ERR_MISSING_ERRNO if ERRNO has the value 0. */ gpg_err_code_t gpg_err_code_from_syserror (void); /* Self-documenting convenience functions. */ static GPG_ERR_INLINE gpg_error_t gpg_err_make_from_errno (gpg_err_source_t source, int err) { return gpg_err_make (source, gpg_err_code_from_errno (err)); } static GPG_ERR_INLINE gpg_error_t gpg_error_from_errno (int err) { return gpg_error (gpg_err_code_from_errno (err)); } static GPG_ERR_INLINE gpg_error_t gpg_error_from_syserror (void) { return gpg_error (gpg_err_code_from_syserror ()); } #ifdef __cplusplus } #endif #endif /* GPG_ERROR_H */ ./libgpg-error-1.7-i686/usr/local/lib/0000755000000000000000000000000011237043722015753 5ustar rootroot./libgpg-error-1.7-i686/usr/local/lib/libgpg-error.so0000777000000000000000000000000011237043722024303 2libgpg-error.so.0.5.0ustar rootroot./libgpg-error-1.7-i686/usr/local/lib/libgpg-error.so.00000777000000000000000000000000011237043722024441 2libgpg-error.so.0.5.0ustar rootroot./libgpg-error-1.7-i686/usr/local/lib/libgpg-error.la0000755000000000000000000000151311237043716020672 0ustar rootroot# libgpg-error.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5.22 Debian 1.5.22-2 (1.1220.2.365 2005/12/18 22:14:06) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='libgpg-error.so.0' # Names of this library. library_names='libgpg-error.so.0.5.0 libgpg-error.so.0 libgpg-error.so' # The name of the static archive. old_library='libgpg-error.a' # Libraries that this one depends upon. dependency_libs='' # Version information for libgpg-error. current=5 age=5 revision=0 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/local/lib' ./libgpg-error-1.7-i686/usr/local/lib/libgpg-error.so.0.5.00000755000000000000000000003356411237043720021364 0ustar rootrootELF4+4 (\)\)\)\9\9(,t)t9t9Qtd     p(   % t  9|A cFUU 7ll , :y Q :  :"@__gmon_start___fini__cxa_finalize_Jv_RegisterClassesgpg_err_initbindtextdomaingpg_strsourcedgettextgpg_strerrorgpg_err_code_to_errnostrlenmemcpygpg_strerror_rgpg_err_code_from_errnogpg_err_code_from_syserror__errno_locationlibc.so.6_edata__bss_start_endlibgpg-error.so.0GLIBC_2.1.3GLIBC_2.0si $ii 0|::`9<:@:D:T:X:\:`:d: h: l: p: t:x:US[X5t?6!X[] hhhhh h($h0(h8p,h@`0hHPUS[l4<uBt% 4P8ҋ8uƃ<]Í'US[3(tt (P҃]ÐUS$53XE}tED$p$$[]Ë$ÐUS$x3E$8EE$:xD$$A$[]UE%]U}x} ~&}~}# EEEEEEEEUS$E2E$uEE%t+E$E}tE$}E9E?E$9D$$bEE$[]UE]U}x }}~}EE}~} E?Et}~} E@EQ}~} E-&E,}?~}? E-?EEEEEEEEEEEEEEEUS$R1ED$E D$E$_EE;E tWE$iEE9EFEEED$ED$E $-E;Eu EE"EE#E $;Er E"EE$[]US4Ù0E$>EE%t\E$E}tAED$E D$E$E}t}tE UEEE?E$D$$EE$,EE9EFEEED$ED$E $}tE UE;Eu EE"E؉EԋEԃ4[]ÐUFm/E%u E&e}wEEEEË $ÐU,/}u E}~} EE} ~}#~w}"~}( EEX})~}9~@}:~}_ EE!}^~}}EEEEEEEEEEEEEEE܋E܉E؋E؉E}y E?ÈEԋEUS4.E}u E?}~} EE} ~}#~w}"~}( EEX})~}9~@}:~}_ EE!}^~}}EEEEEEEEEEE܋E܉EEE؋E؉EԋEԉE}y E?ÈEЋEЃ4[]ÐUVS[-P@t֍ЋFu[^]ÐUS[,DZ[]/usr/local/share/localelibgpg-errorUnspecified sourcegcryptGnuPGGpgSMGPG AgentPinentrySCDGPGMEKeyboxKSBADirmngrGSTIGPAKleopatraAny sourceUser defined source 1User defined source 2User defined source 3User defined source 4Unknown source &09=CJOW\`julibgpg-errorSuccessGeneral errorUnknown packetUnknown version in packetInvalid public key algorithmInvalid digest algorithmBad public keyBad secret keyBad signatureNo public keyChecksum errorBad passphraseInvalid cipher algorithmKeyring openInvalid packetInvalid armorNo user IDNo secret keyWrong secret key usedBad session keyUnknown compression algorithmNumber is not primeInvalid encoding methodInvalid encryption schemeInvalid signature schemeInvalid attributeNo valueNot foundValue not foundSyntax errorBad MPI valueInvalid passphraseInvalid signature classResources exhaustedInvalid keyringTrust DB errorBad certificateInvalid user IDUnexpected errorTime conflictKeyserver errorWrong public key algorithmTribute to D. A.Weak encryption keyInvalid key lengthInvalid argumentSyntax error in URIInvalid URINetwork errorUnknown hostSelftest failedData not encryptedData not processedUnusable public keyUnusable secret keyInvalid valueBad certificate chainMissing certificateNo dataBugNot supportedInvalid operation codeTimeoutInternal errorEOF (gcrypt)Invalid objectProvided object is too shortProvided object is too largeMissing item in objectNot implementedConflicting useInvalid cipher modeInvalid flagInvalid handleResult truncatedIncomplete lineInvalid responseNo agent runningagent errorInvalid dataUnspecific Assuan server faultGeneral Assuan errorInvalid session keyInvalid S-expressionUnsupported algorithmNo pinentrypinentry errorBad PINInvalid nameBad dataInvalid parameterWrong cardNo dirmngrdirmngr errorCertificate revokedNo CRL knownCRL too oldLine too longNot trustedOperation cancelledBad CA certificateCertificate expiredCertificate too youngUnsupported certificateUnknown S-expressionUnsupported protectionCorrupted protectionAmbiguous nameCard errorCard reset requiredCard removedInvalid cardCard not presentNo PKCS15 applicationNot confirmedConfiguration errorNo policy matchInvalid indexInvalid IDNo SmartCard daemonSmartCard daemon errorUnsupported protocolBad PIN methodCard not initializedUnsupported operationWrong key usageNothing foundWrong blob typeMissing valueHardware problemPIN blockedConditions of use not satisfiedPINs are not syncedInvalid CRLBER errorInvalid BERElement not foundIdentifier not foundInvalid tagInvalid lengthInvalid key infoUnexpected tagNot DER encodedNo CMS objectInvalid CMS objectUnknown CMS objectUnsupported CMS objectUnsupported encodingUnsupported CMS versionUnknown algorithmInvalid crypto enginePublic key not trustedDecryption failedKey expiredSignature expiredEncoding problemInvalid stateDuplicated valueMissing actionASN.1 module not foundInvalid OID stringInvalid timeInvalid CRL objectUnsupported CRL versionInvalid certificate objectUnknown nameA locale function failedNot lockedProtocol violationInvalid MACInvalid requestUnknown extensionUnknown critical extensionLockedUnknown optionUnknown commandNot operationalNo passphrase givenNo PIN givenOperation not yet finishedBuffer too shortInvalid length specifier in S-expressionString too long in S-expressionUnmatched parentheses in S-expressionS-expression not canonicalBad character in S-expressionBad quotation in S-expressionZero prefix in S-expressionNested display hints in S-expressionUnmatched display hintsUnexpected reserved punctuation in S-expressionBad hexadecimal character in S-expressionOdd hexadecimal numbers in S-expressionBad octadecimal character in S-expressionGeneral IPC errorIPC accept call failedIPC connect call failedInvalid IPC responseInvalid value passed to IPCIncomplete line passed to IPCLine passed to IPC too longNested IPC commandsNo data callback in IPCNo inquire callback in IPCNot an IPC serverNot an IPC clientProblem starting IPC serverIPC read errorIPC write errorToo much data for IPC layerUnexpected IPC commandUnknown IPC commandIPC syntax errorIPC call has been cancelledNo input source for IPCNo output source for IPCIPC parameter errorUnknown IPC inquireUser defined error code 1User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16System error w/o errnoUnknown system errorEnd of fileUnknown error code%?\u)?Om/G[kz -AM[hx /7FSb$5FR_~ (3AUbn|2AL`mz,;Pfv  ' < H W h w  ' > P \ n   * 7 P [ n z   ) : c  A Y .F[w 8GWs$>Xr)D_zlibgpg-error bcDa r4 MJ589;} ,Fgoh##Y!Izpq+Tsjx3-./OPSRQ0(|ZH$wdfe7i2=%C{ *@A\?<&k'vX_L_K` G]["NByUl^EtV>nmu1W 6kQ/1hR V$_#Pa30KAf%[~zBm uES^b?W+678>N5 L]O\XYwTrD! jg v9:=<;-ydCtZs}eilHJIM2`|)*.cF4x"U@  t \ : H:Pd0o4ooot9*:JZjz|:l9GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment! \\p):1o.>o440M dd0V P _/Zekt t q  yX)X)\9\) h9h)p9p)t9t)<:<* H:H*4|:|*:**&+/3 4\9h9p9* @:O:V@ bd9ol9|X) p90   P  )C  @!     %4 `' H:-|::!  Q ht9\4d  t   X) \9h9p9t9<:H:|::q(    t  |A 3U A7Sel r , : Q :  :"__CTOR_LIST____DTOR_LIST____JCR_LIST____do_global_dtors_auxcompleted.5958p.5956frame_dummy__CTOR_END____DTOR_END____FRAME_END____JCR_END____do_global_ctors_auxmsgstrmsgidxgpg_err_sourcemsgidxofgpg_err_codesystem_strerror_rerr_code_to_errnoerr_code_from_index_GLOBAL_OFFSET_TABLE___dso_handle__i686.get_pc_thunk.cx__i686.get_pc_thunk.bx_DYNAMIC__errno_location@@GLIBC_2.0strerror@@GLIBC_2.0gpg_err_code_from_errno__gmon_start___Jv_RegisterClasses_finigpg_err_initdgettext@@GLIBC_2.0bindtextdomain@@GLIBC_2.0strerror_r@@GLIBC_2.0gpg_strsourcememcpy@@GLIBC_2.0strlen@@GLIBC_2.0gpg_strerrorgpg_strerror_r__bss_startgpg_err_code_to_errno_endgpg_err_code_from_syserror_edata__cxa_finalize@@GLIBC_2.1.3_init./libgpg-error-1.7-i686/usr/local/lib/libgpg-error.a0000644000000000000000000003354611237043716020526 0ustar rootroot! / 1249658830 0 0 0 160 `  )//gpg_err_initgpg_strsourcegpg_strerrorgpg_strerror_rgpg_err_code_to_errnogpg_err_code_from_errnogpg_err_code_from_syserror// 150 ` libgpg_error_la-init.o/ libgpg_error_la-strsource.o/ libgpg_error_la-strerror.o/ libgpg_error_la-code-to-errno.o/ libgpg_error_la-code-from-errno.o/ /0 1249658756 0 1000 100644 1020 ` ELF4( UE}tED$$/usr/local/share/localelibgpg-errorGCC: (GNU) 4.2.2.symtab.strtab.shstrtab.rel.text.data.bss.rodata.rel.ctors.comment.note.GNU-stack4-  %d+d0d%<8  CL\  $ -init.cgpg_err_initbindtextdomain "  /24 1249658756 0 1000 100644 1412 ` ELF4( UE$,EE$.D$$0UE%]U}x} ~&}~}# EEEEEEEEUnspecified sourcegcryptGnuPGGpgSMGPG AgentPinentrySCDGPGMEKeyboxKSBADirmngrGSTIGPAKleopatraAny sourceUser defined source 1User defined source 2User defined source 3User defined source 4Unknown source &09=CJOW\`julibgpg-errorGCC: (GNU) 4.2.2.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.note.GNU-stack4 d %+0= 8A//Q8  J P=*MC3=Astrsource.cmsgstrmsgidxgpg_err_sourcemsgidxofgpg_strsourcedgettext"'27 /53 1249658756 0 1000 100644 7640 ` ELF4( U(E$iEE%t+E$E}tE$E1E?E$- D$$EEUE]U}x }}~}EE}~} E?Et}~} E@EQ}~} E-&E,}?~}? E-?EEEEEEEEEEEEEEEU(ED$E D$E$EE;E tWE$EE9EFEEED$ED$E $E;Eu EE"EE#E $;Er E"EEU8E$ZEE%t\E$E}tAED$E D$E$ E}t}tE UEEE?E$ D$$EE$EE9EFEEED$ED$E $}tE UE;Eu EE"E܉E؋ESuccessGeneral errorUnknown packetUnknown version in packetInvalid public key algorithmInvalid digest algorithmBad public keyBad secret keyBad signatureNo public keyChecksum errorBad passphraseInvalid cipher algorithmKeyring openInvalid packetInvalid armorNo user IDNo secret keyWrong secret key usedBad session keyUnknown compression algorithmNumber is not primeInvalid encoding methodInvalid encryption schemeInvalid signature schemeInvalid attributeNo valueNot foundValue not foundSyntax errorBad MPI valueInvalid passphraseInvalid signature classResources exhaustedInvalid keyringTrust DB errorBad certificateInvalid user IDUnexpected errorTime conflictKeyserver errorWrong public key algorithmTribute to D. A.Weak encryption keyInvalid key lengthInvalid argumentSyntax error in URIInvalid URINetwork errorUnknown hostSelftest failedData not encryptedData not processedUnusable public keyUnusable secret keyInvalid valueBad certificate chainMissing certificateNo dataBugNot supportedInvalid operation codeTimeoutInternal errorEOF (gcrypt)Invalid objectProvided object is too shortProvided object is too largeMissing item in objectNot implementedConflicting useInvalid cipher modeInvalid flagInvalid handleResult truncatedIncomplete lineInvalid responseNo agent runningagent errorInvalid dataUnspecific Assuan server faultGeneral Assuan errorInvalid session keyInvalid S-expressionUnsupported algorithmNo pinentrypinentry errorBad PINInvalid nameBad dataInvalid parameterWrong cardNo dirmngrdirmngr errorCertificate revokedNo CRL knownCRL too oldLine too longNot trustedOperation cancelledBad CA certificateCertificate expiredCertificate too youngUnsupported certificateUnknown S-expressionUnsupported protectionCorrupted protectionAmbiguous nameCard errorCard reset requiredCard removedInvalid cardCard not presentNo PKCS15 applicationNot confirmedConfiguration errorNo policy matchInvalid indexInvalid IDNo SmartCard daemonSmartCard daemon errorUnsupported protocolBad PIN methodCard not initializedUnsupported operationWrong key usageNothing foundWrong blob typeMissing valueHardware problemPIN blockedConditions of use not satisfiedPINs are not syncedInvalid CRLBER errorInvalid BERElement not foundIdentifier not foundInvalid tagInvalid lengthInvalid key infoUnexpected tagNot DER encodedNo CMS objectInvalid CMS objectUnknown CMS objectUnsupported CMS objectUnsupported encodingUnsupported CMS versionUnknown algorithmInvalid crypto enginePublic key not trustedDecryption failedKey expiredSignature expiredEncoding problemInvalid stateDuplicated valueMissing actionASN.1 module not foundInvalid OID stringInvalid timeInvalid CRL objectUnsupported CRL versionInvalid certificate objectUnknown nameA locale function failedNot lockedProtocol violationInvalid MACInvalid requestUnknown extensionUnknown critical extensionLockedUnknown optionUnknown commandNot operationalNo passphrase givenNo PIN givenOperation not yet finishedBuffer too shortInvalid length specifier in S-expressionString too long in S-expressionUnmatched parentheses in S-expressionS-expression not canonicalBad character in S-expressionBad quotation in S-expressionZero prefix in S-expressionNested display hints in S-expressionUnmatched display hintsUnexpected reserved punctuation in S-expressionBad hexadecimal character in S-expressionOdd hexadecimal numbers in S-expressionBad octadecimal character in S-expressionGeneral IPC errorIPC accept call failedIPC connect call failedInvalid IPC responseInvalid value passed to IPCIncomplete line passed to IPCLine passed to IPC too longNested IPC commandsNo data callback in IPCNo inquire callback in IPCNot an IPC serverNot an IPC clientProblem starting IPC serverIPC read errorIPC write errorToo much data for IPC layerUnexpected IPC commandUnknown IPC commandIPC syntax errorIPC call has been cancelledNo input source for IPCNo output source for IPCIPC parameter errorUnknown IPC inquireUser defined error code 1User defined error code 2User defined error code 3User defined error code 4User defined error code 5User defined error code 6User defined error code 7User defined error code 8User defined error code 9User defined error code 10User defined error code 11User defined error code 12User defined error code 13User defined error code 14User defined error code 15User defined error code 16System error w/o errnoUnknown system errorEnd of fileUnknown error code%?\u)?Om/G[kz -AM[hx /7FSb$5FR_~ (3AUbn|2AL`mz,;Pfv  ' < H W h w  ' > P \ n   * 7 P [ n z   ) : c  A Y .F[w 8GWs$>Xr)D_zlibgpg-errorGCC: (GNU) 4.2.2.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.note.GNU-stack4# P %X+X0` 8EAWWQ`P    z '0fBzOenwstrerror.cmsgstrmsgidxgpg_err_codemsgidxofsystem_strerror_rgpg_strerrorgpg_err_code_to_errnostrerrordgettextstrerror_rstrlenmemcpygpg_strerror_r';Y^in6/81 1249658756 0 1000 100644 1460 ` ELF4( UE%u E&e}wEEEE bcDa r4 MJ589;} ,Fgoh##Y!Izpq+Tsjx3-./OPSRQ0(|ZH$wdfe7i2=%C{ *@A\?<&k'vX_L_K` G]["NByUl^EtV>nmu1W 6GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.note.GNU-stack4F  %|+|04 8AQ  p94#Fcode-to-errno.cerr_code_to_errnogpg_err_code_to_errno1/114 1249658757 0 1000 100644 1912 ` ELF|4( U,}u E}~} EE} ~}#~w}"~}( EEX})~}9~@}:~}_ EE!}^~}}EEEEEEEEEEEEEEE܋E܉E؋E؉E}y E?ÈEԋEU8E}u E?}~} EE} ~}#~w}"~}( EEX})~}9~@}:~}_ EE!}^~}}EEEEEEEEEEEEEEE܋E܉E؋E؉E}y E?ÈEԋEkQ/1hR V$_#Pa30KAf%[~zBm uES^b?W+678>N5 L]O\XYwTrD! jg v9:=<;-ydCtZs}eilHJIM2`|)*.cF4x"U@GCC: (GNU) 4.2.2.symtab.strtab.shstrtab.rel.text.data.bss.rodata.comment.note.GNU-stack4 ` %+0  8A**Q4  k'?Zcode-from-errno.cerr_code_from_indexgpg_err_code_from_errnogpg_err_code_from_syserror__errno_location ./libgpg-error-1.7-i686/usr/local/bin/0000755000000000000000000000000011237043720015753 5ustar rootroot./libgpg-error-1.7-i686/usr/local/bin/gpg-error0000755000000000000000000004016011237043720017606 0ustar rootrootELFP4`<4 (444999HT9((( Qtd/lib/ld-linux.so.2GNU     " 6ē tg<U.{/JP2] ,vW libgpg-error.so.0__gmon_start___Jv_RegisterClasses_finigpg_strsourcegpg_strerror_initlibc.so.6_IO_stdin_usedexitsetlocalestrrchrgettext__errno_locationstdoutstrtoulstrcasecmpstderrstrncasecmpfwritefprintfbindtextdomainstrcmp__libc_start_main_edata__bss_start_endGLIBC_2.0]ii "    US[ØDt/u X[]5%%h%h%h%h%h %h(%h0%h8p%h@`%hHP%hP@%hX0%h` %hh%hp%hx%h%h1^PTRh,h1QVhU=t+ ҡufUtt hЃÐUS$E$LEE$N$@9u EE$(EE$[]UE%]U}x} ~&}~}# EEEEEEEEÐUS$E$EE%t8eE$xE}xEEIE@E$p$b9u EE$J EE$[]UE]U}x}EEEEU}x }}~}EE}~} E?Et}~} E@EQ}~} E-&E,}?~}? E-?EEEEEEEEEEEEEEEÐUD$Ը$BEո}tED$$$U(D$ED$E$Eat EEtnEPD$ED$$E u Et E?}w }v E$ED$E$EU EEEU} tEE MEEU(D$ED$$TEt EEEERE$E}t7ED$E$uE E ‹E EE}vD$ED$$uzEt EoEEEIE$E}t1ED$E$!uE UE EE}vEEU8EEEEEE EEt2E<@~ EN_o~/DSk~,:IXiw/usr/local/share/localelibgpg-errorGPG_ERR_GPG_ERR_SOURCE_Usage: %s GPG-ERROR [...] --versiongpg-error (libgpg-error) 1.7 -%u = (%u, %u) = (%s, %s) = (%s, %s) %s: warning: could not recognize %s ]  ēHă , `Ho(oo6FVfvƆֆ&6FGCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2GCC: (GNU) 4.2.2.shstrtab.interp.note.ABI-tag.hash.dynsym.dynstr.gnu.version.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.eh_frame.ctors.dtors.jcr.dynamic.got.got.plt.data.bss.comment (( !HH' /ă,7o8Do(( S HH\ `` e/`  0kPPt qēw% 99999::T: : :;./libgpg-error-1.7-i686/usr/local/bin/gpg-error-config0000755000000000000000000000275511237043717021067 0ustar rootroot#!/bin/sh # Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # # This file is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. prefix=/usr/local exec_prefix=${prefix} includedir=${prefix}/include libdir=${exec_prefix}/lib output="" usage() { cat <&2 fi while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case $1 in --prefix) output="$output $prefix" ;; --exec-prefix) output="$output $exec_prefix" ;; --version) echo "1.7" exit 0 ;; --cflags) if test "x$includedir" != "x/usr/include" -a "x$includedir" != "x/include"; then output="$output -I$includedir" fi ;; --libs) if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then output="$output -L$libdir" fi output="$output -lgpg-error" ;; *) usage 1 1>&2 ;; esac shift done echo $output ./libgpg-error-1.7-i686/libgpg-error-1.7-i686.pet.specs0000644000000000000000000000010511237043776020525 0ustar rootrootPETMENUDESCR='libgpg-error-1.7' PETOFFICIALDEPS='' PETREGISTER='yes'