summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/security
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-03-29 12:38:54 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-03-29 12:38:54 +0000
commit310dcbc66bb174047d05b91c7331cec1c6077421 (patch)
tree63fe99eb3bb06788fbf1a5eb0a67f5045d266e40 /offapi/com/sun/star/security
parent98f661288351c8d1f868f351fe386af491c676a3 (diff)
INTEGRATION: CWS xmlsec10 (1.2.130); FILE MERGED
2005/03/23 09:50:16 mmi 1.2.130.1: idl review Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'offapi/com/sun/star/security')
-rw-r--r--offapi/com/sun/star/security/CertificateCharacters.idl10
-rw-r--r--offapi/com/sun/star/security/CertificateValidity.idl34
2 files changed, 22 insertions, 22 deletions
diff --git a/offapi/com/sun/star/security/CertificateCharacters.idl b/offapi/com/sun/star/security/CertificateCharacters.idl
index 15010116cd9f..e31da1cc057c 100644
--- a/offapi/com/sun/star/security/CertificateCharacters.idl
+++ b/offapi/com/sun/star/security/CertificateCharacters.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: CertificateCharacters.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kz $ $Date: 2004-08-31 09:50:07 $
+ * last change: $Author: rt $ $Date: 2005-03-29 13:38:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,17 +81,17 @@ constants CertificateCharacters
/**
* It is a self-signed certificate.
*/
- const long CERT_CHARACTER_SELF_SIGNED = 0x00000001 ;
+ const long SELF_SIGNED = 0x00000001 ;
/**
* It is a trusted certificate.
*/
- const long CERT_CHARACTER_TRUSTED = 0x00000002 ;
+ const long TRUSTED = 0x00000002 ;
/**
* A private key binding with the certificate is in user's profile.
*/
- const long CERT_CHARACTER_HAS_PRIVATE_KEY = 0x00000004 ;
+ const long HAS_PRIVATE_KEY = 0x00000004 ;
} ;
} ; } ; } ; } ;
diff --git a/offapi/com/sun/star/security/CertificateValidity.idl b/offapi/com/sun/star/security/CertificateValidity.idl
index 7424aabc1eb6..00169d96ba7b 100644
--- a/offapi/com/sun/star/security/CertificateValidity.idl
+++ b/offapi/com/sun/star/security/CertificateValidity.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: CertificateValidity.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kz $ $Date: 2004-08-31 09:50:27 $
+ * last change: $Author: rt $ $Date: 2005-03-29 13:38:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,77 +81,77 @@ constants CertificateValidity
/**
* The certificate is invalid.
*/
- const long CERT_VALIDITY_INVALID = 0x00000001 ;
+ const long INVALID = 0x00000001 ;
/**
* The certificate itself is untrusted.
*/
- const long CERT_VALIDITY_UNTRUSTED = 0x00000002 ;
+ const long UNTRUSTED = 0x00000002 ;
/**
* It is a time-out certificate.
*/
- const long CERT_VALIDITY_TIMEOUT = 0x00000004 ;
+ const long TIMEOUT = 0x00000004 ;
/**
* It is a revoked certificate.
*/
- const long CERT_VALIDITY_REVOKED = 0x00000008 ;
+ const long REVOKED = 0x00000008 ;
/**
* The certificate revocation status is unknown.
*/
- const long CERT_VALIDITY_UNKNOWN_REVOKATION = 0x00000010 ;
+ const long UNKNOWN_REVOKATION = 0x00000010 ;
/**
* The certificate signature is invalid.
*/
- const long CERT_VALIDITY_SIGNATURE_INVALID = 0x00000020 ;
+ const long SIGNATURE_INVALID = 0x00000020 ;
/**
* The certificate has invalid extensions.
*/
- const long CERT_VALIDITY_EXTENSION_INVALID = 0x00000040 ;
+ const long EXTENSION_INVALID = 0x00000040 ;
/**
* The certificate has critical unknown extensions.
*/
- const long CERT_VALIDITY_EXTENSION_UNKNOWN = 0x00000080 ;
+ const long EXTENSION_UNKNOWN = 0x00000080 ;
/**
* The certificate issuer is unknown.
*/
- const long CERT_VALIDITY_ISSUER_UNKNOWN = 0x00000100 ;
+ const long ISSUER_UNKNOWN = 0x00000100 ;
/**
* The certificate issuer is untrusted.
*/
- const long CERT_VALIDITY_ISSUER_UNTRUSTED = 0x00000200 ;
+ const long ISSUER_UNTRUSTED = 0x00000200 ;
/**
* The certificate issuer is invalid.
*/
- const long CERT_VALIDITY_ISSUER_INVALID = 0x00000400 ;
+ const long ISSUER_INVALID = 0x00000400 ;
/**
* The root certificate is unknown.
*/
- const long CERT_VALIDITY_ROOT_UNKNOWN = 0x00001000 ;
+ const long ROOT_UNKNOWN = 0x00001000 ;
/**
* The root certificate is untrusted.
*/
- const long CERT_VALIDITY_ROOT_UNTRUSTED = 0x00002000 ;
+ const long ROOT_UNTRUSTED = 0x00002000 ;
/**
* The root certificate is invalid.
*/
- const long CERT_VALIDITY_ROOT_INVALID = 0x00004000 ;
+ const long ROOT_INVALID = 0x00004000 ;
/**
* The certificate chain is incomplete.
*/
- const long CERT_VALIDITY_CHAIN_INCOMPLETE = 0x00010000 ;
+ const long CHAIN_INCOMPLETE = 0x00010000 ;
} ;
} ; } ; } ; } ;