/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef _SIGSTRUCT_HXX #define _SIGSTRUCT_HXX #include #include #include #ifndef INCLUDED_VECTOR #include #define INCLUDED_VECTOR #endif /* * signature status */ /* #define STATUS_INIT 0 #define STATUS_CREATION_SUCCEED 1 #define STATUS_CREATION_FAIL 2 #define STATUS_VERIFY_SUCCEED 3 #define STATUS_VERIFY_FAIL 4 */ /* * type of reference */ #define TYPE_SAMEDOCUMENT_REFERENCE 1 #define TYPE_BINARYSTREAM_REFERENCE 2 #define TYPE_XMLSTREAM_REFERENCE 3 struct SignatureReferenceInformation { sal_Int32 nType; rtl::OUString ouURI; rtl::OUString ouDigestValue; SignatureReferenceInformation( sal_Int32 type, rtl::OUString uri ) { nType = type; ouURI = uri; } }; typedef ::std::vector< SignatureReferenceInformation > SignatureReferenceInformations; struct SignatureInformation { sal_Int32 nSecurityId; sal_Int32 nSecurityEnvironmentIndex; ::com::sun::star::xml::crypto::SecurityOperationStatus nStatus; SignatureReferenceInformations vSignatureReferenceInfors; rtl::OUString ouX509IssuerName; rtl::OUString ouX509SerialNumber; rtl::OUString ouX509Certificate; rtl::OUString ouSignatureValue; ::com::sun::star::util::DateTime stDateTime; //We also keep the date and time as string. This is done when this //structure is created as a result of a XML signature being read. //When then a signature is added or another removed, then the original //XML signatures are written again (unless they have been removed). //If the date time string is converted into the DateTime structure //then information can be lost because it only holds a fractional //of a second with a accuracy of one hundredth of second. //If the string contains //milli seconds (because the document was created by an application other than OOo) //and the converted time is written back, then the string looks different //and the signature is broken. rtl::OUString ouDateTime; rtl::OUString ouSignatureId; rtl::OUString ouPropertyId; SignatureInformation( sal_Int32 nId ) { nSecurityId = nId; nStatus = ::com::sun::star::xml::crypto::SecurityOperationStatus_UNKNOWN; nSecurityEnvironmentIndex = -1; } }; typedef ::std::vector< SignatureInformation > SignatureInformations; #endif