diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-02-14 00:24:52 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-02-14 00:24:52 +0000 |
commit | 27530c31810976dec063f8ffdc6709945dfcef39 (patch) | |
tree | cec3787f0865d2f4a29ddf2f24746e328fd3484d /winsup/w32api/include/ntsecpkg.h | |
parent | 4478a9f329cae9b109446a41b72853438a8ec0ab (diff) | |
download | cygnal-27530c31810976dec063f8ffdc6709945dfcef39.tar.gz cygnal-27530c31810976dec063f8ffdc6709945dfcef39.tar.bz2 cygnal-27530c31810976dec063f8ffdc6709945dfcef39.zip |
* include/ntsecpkg.h: New file.
* include/schannel.h: New file.
* include/schnlsp.h: New file.
* include/security.h: New file.
* include/sspi.h: New file.
* include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
* include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
(struct _CRYPTOAPI_BLOB): Add structure and typedefs.
(SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
CERT_CHAIN_CONTEXT): Add missing structures.
(CertCloseStore, CertGetCertificateChain,
CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
CertFindCertificateInStore, CertFreeCertificateContext,
CertGetIssuerCertificateFromStore,
CertFindChainInStore): Add missing functions.
(CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
CERT_FIND_ISSUER_STR): Add Unicode mappings.
* lib/crypt32.def: New file.
* lib/secur32.def: Add mising stubs.
* lib/test.c: Include new headers.
Diffstat (limited to 'winsup/w32api/include/ntsecpkg.h')
-rw-r--r-- | winsup/w32api/include/ntsecpkg.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/winsup/w32api/include/ntsecpkg.h b/winsup/w32api/include/ntsecpkg.h new file mode 100644 index 000000000..4e7696b98 --- /dev/null +++ b/winsup/w32api/include/ntsecpkg.h @@ -0,0 +1,41 @@ +#ifndef _NTSECPKG_H +#define _NTSECPKG_H + +#define ISC_REQ_DELEGATE 1 +#define ISC_REQ_MUTUAL_AUTH 2 +#define ISC_REQ_REPLAY_DETECT 4 +#define ISC_REQ_SEQUENCE_DETECT 8 +#define ISC_REQ_CONFIDENTIALITY 16 +#define ISC_REQ_USE_SESSION_KEY 32 +#define ISC_REQ_PROMPT_FOR_CREDS 64 +#define ISC_REQ_USE_SUPPLIED_CREDS 128 +#define ISC_REQ_ALLOCATE_MEMORY 256 +#define ISC_REQ_USE_DCE_STYLE 512 +#define ISC_REQ_DATAGRAM 1024 +#define ISC_REQ_CONNECTION 2048 +#define ISC_REQ_EXTENDED_ERROR 16384 +#define ISC_REQ_STREAM 32768 +#define ISC_REQ_INTEGRITY 65536 +#define ISC_REQ_MANUAL_CRED_VALIDATION 524288 +#define ISC_REQ_HTTP 268435456 + +#define ISC_RET_EXTENDED_ERROR 16384 + +#define ASC_REQ_DELEGATE 1 +#define ASC_REQ_MUTUAL_AUTH 2 +#define ASC_REQ_REPLAY_DETECT 4 +#define ASC_REQ_SEQUENCE_DETECT 8 +#define ASC_REQ_CONFIDENTIALITY 16 +#define ASC_REQ_USE_SESSION_KEY 32 +#define ASC_REQ_ALLOCATE_MEMORY 256 +#define ASC_REQ_USE_DCE_STYLE 512 +#define ASC_REQ_DATAGRAM 1024 +#define ASC_REQ_CONNECTION 2048 +#define ASC_REQ_EXTENDED_ERROR 32768 +#define ASC_REQ_STREAM 65536 +#define ASC_REQ_INTEGRITY 131072 + +#define SECURITY_NATIVE_DREP 16 +#define SECURITY_NETWORK_DREP 0 + +#endif /* _NTSECPKG_H */ |