2004-07-12 07:15:31 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:42:19 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
2008-04-10 18:42:19 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
2008-04-10 18:42:19 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
2008-04-10 18:42:19 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
2008-04-10 18:42:19 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
2008-04-10 18:42:19 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-07-12 07:15:31 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 08:47:33 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_xmlsecurity.hxx"
|
|
|
|
|
2004-07-12 07:15:31 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "util.hxx"
|
|
|
|
|
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
#include <cppuhelper/servicefactory.hxx>
|
|
|
|
|
2004-07-26 01:30:29 -05:00
|
|
|
#include <xmlsecurity/biginteger.hxx>
|
2005-05-18 04:01:39 -05:00
|
|
|
#include <xmlsecurity/xmlsignaturehelper.hxx>
|
2006-04-07 05:58:21 -05:00
|
|
|
#include "xmlsecurity/baseencoding.hxx"
|
2004-07-27 20:27:50 -05:00
|
|
|
#include <tools/date.hxx>
|
|
|
|
#include <tools/time.hxx>
|
2004-07-26 01:30:29 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
using namespace ::com::sun::star;
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
long denyVerifyHandler( void *, void * )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
long startVerifyHandler( void *, void * )
|
|
|
|
{
|
2005-05-18 04:01:39 -05:00
|
|
|
return QueryVerifySignature();
|
2004-07-12 07:15:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int SAL_CALL main( int argc, char **argv )
|
|
|
|
{
|
2005-05-18 04:01:39 -05:00
|
|
|
if( argc < 5 )
|
2004-07-12 07:15:31 -05:00
|
|
|
{
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stderr, "Usage: %s <signature file 1> <signature file 2> <xml stream file> <binary stream file> [<cryptoken>]\n" , argv[0] ) ;
|
2004-07-12 07:15:31 -05:00
|
|
|
return -1 ;
|
|
|
|
}
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
uno::Reference< lang::XMultiServiceFactory > xMSF = CreateDemoServiceFactory();
|
2004-07-12 07:15:31 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
rtl::OUString aSIGFileName = rtl::OUString::createFromAscii(argv[1]);
|
|
|
|
rtl::OUString aSIGFileName2 = rtl::OUString::createFromAscii(argv[2]);
|
2004-07-12 07:15:31 -05:00
|
|
|
rtl::OUString aXMLFileName = rtl::OUString::createFromAscii(argv[3]);
|
|
|
|
rtl::OUString aBINFileName = rtl::OUString::createFromAscii(argv[4]);
|
2005-05-18 04:01:39 -05:00
|
|
|
rtl::OUString aCryptoToken;
|
|
|
|
if ( argc >= 7 )
|
|
|
|
aCryptoToken = rtl::OUString::createFromAscii(argv[6]);
|
|
|
|
|
2004-07-12 07:15:31 -05:00
|
|
|
sal_Int32 nSecurityId;
|
2005-05-18 04:01:39 -05:00
|
|
|
uno::Reference< io::XOutputStream > xOutputStream;
|
|
|
|
uno::Reference< io::XInputStream > xInputStream;
|
2004-07-12 07:15:31 -05:00
|
|
|
bool bDone;
|
|
|
|
SignatureInformations signatureInformations;
|
2005-05-18 04:01:39 -05:00
|
|
|
uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler> xDocumentHandler;
|
2004-07-12 07:15:31 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
// -------- START -------
|
2004-07-12 07:15:31 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
XMLSignatureHelper aSignatureHelper( xMSF );
|
|
|
|
|
|
|
|
bool bInit = aSignatureHelper.Init( aCryptoToken );
|
2004-07-12 07:15:31 -05:00
|
|
|
if ( !bInit )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Error initializing security context!\n" );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\n\nTEST MISSION 1: Create the first signature file\n");
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.StartMission();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* select a private key certificate
|
|
|
|
*/
|
2005-05-18 04:01:39 -05:00
|
|
|
uno::Reference< xml::crypto::XSecurityEnvironment > xSecurityEnvironment = aSignatureHelper.GetSecurityEnvironment();
|
|
|
|
uno::Sequence< uno::Reference< ::com::sun::star::security::XCertificate > > xPersonalCerts = xSecurityEnvironment->getPersonalCertificates() ;
|
2004-07-27 20:27:50 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\nPlease select two certificates:\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
for ( int nSig = 0; nSig < 2; nSig++ )
|
|
|
|
{
|
|
|
|
// New security ID for signature...
|
|
|
|
nSecurityId = aSignatureHelper.GetNewSecurityId();
|
|
|
|
|
|
|
|
// Select certificate...
|
|
|
|
uno::Reference< ::com::sun::star::security::XCertificate > xPersonalCert = getCertificateFromEnvironment( xSecurityEnvironment, true );
|
2006-04-07 05:58:21 -05:00
|
|
|
aSignatureHelper.SetX509Certificate(
|
|
|
|
nSecurityId, xPersonalCert->getIssuerName(),
|
|
|
|
bigIntegerToNumericString( xPersonalCert->getSerialNumber()),
|
|
|
|
baseEncode(xPersonalCert->getEncoded(), BASE64));
|
2005-05-18 04:01:39 -05:00
|
|
|
aSignatureHelper.AddForSigning( nSecurityId, aXMLFileName, aXMLFileName, sal_False );
|
|
|
|
aSignatureHelper.AddForSigning( nSecurityId, aBINFileName, aBINFileName, sal_True );
|
|
|
|
aSignatureHelper.SetDateTime( nSecurityId, Date(), Time() );
|
|
|
|
}
|
2004-07-12 07:15:31 -05:00
|
|
|
/*
|
|
|
|
* creates signature
|
|
|
|
*/
|
2005-05-18 04:01:39 -05:00
|
|
|
xOutputStream = OpenOutputStream( aSIGFileName );
|
2004-07-15 02:12:10 -05:00
|
|
|
bDone = aSignatureHelper.CreateAndWriteSignature( xOutputStream );
|
2004-07-12 07:15:31 -05:00
|
|
|
if ( !bDone )
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stderr, "\nSTATUS MISSION 1: Error creating Signature!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
else
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\nSTATUS MISSION 1: Signature successfully created!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.EndMission();
|
|
|
|
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\n\nTEST MISSION 2: Transfer the second signature to a new signature file\n");
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* You can use an uninitialized SignatureHelper to perform this mission.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2005-05-18 04:01:39 -05:00
|
|
|
* configures the start-verify handler. Don't need to verify for transfering...
|
2004-07-12 07:15:31 -05:00
|
|
|
*/
|
|
|
|
aSignatureHelper.SetStartVerifySignatureHdl( Link( NULL, denyVerifyHandler ) );
|
|
|
|
aSignatureHelper.StartMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
xInputStream = OpenInputStream( aSIGFileName );
|
2004-07-15 02:12:10 -05:00
|
|
|
bDone = aSignatureHelper.ReadAndVerifySignature( xInputStream );
|
2004-07-12 07:15:31 -05:00
|
|
|
xInputStream->closeInput();
|
|
|
|
|
|
|
|
if ( !bDone )
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stderr, "\nSTATUS MISSION 2: Error in reading Signature!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
else
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\nSTATUS MISSION 2: Signature successfully transfered!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* get all signature information
|
|
|
|
*/
|
|
|
|
signatureInformations = aSignatureHelper.GetSignatureInformations();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* write the first signature into the second signature file.
|
|
|
|
*/
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
xOutputStream = OpenOutputStream( aSIGFileName2 );
|
2004-07-12 07:15:31 -05:00
|
|
|
xDocumentHandler = aSignatureHelper.CreateDocumentHandlerWithHeader( xOutputStream);
|
|
|
|
aSignatureHelper.ExportSignature( xDocumentHandler, signatureInformations[1]);
|
|
|
|
aSignatureHelper.CloseDocumentHandler( xDocumentHandler);
|
|
|
|
aSignatureHelper.EndMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\n\nTEST MISSION 3: Insert a new signature to the first signature file\n");
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.StartMission();
|
|
|
|
|
|
|
|
nSecurityId = aSignatureHelper.GetNewSecurityId();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
// Select certificate...
|
|
|
|
uno::Reference< ::com::sun::star::security::XCertificate > xPersonalCert = getCertificateFromEnvironment( xSecurityEnvironment, true );
|
2006-04-07 05:58:21 -05:00
|
|
|
aSignatureHelper.SetX509Certificate(
|
|
|
|
nSecurityId, xPersonalCert->getIssuerName(),
|
|
|
|
bigIntegerToNumericString( xPersonalCert->getSerialNumber()),
|
|
|
|
baseEncode(xPersonalCert->getEncoded(), BASE64));
|
2005-05-18 04:01:39 -05:00
|
|
|
aSignatureHelper.AddForSigning( nSecurityId, aXMLFileName, aXMLFileName, sal_False );
|
2004-07-12 07:15:31 -05:00
|
|
|
aSignatureHelper.AddForSigning( nSecurityId, aBINFileName, aBINFileName, sal_True );
|
2005-05-18 04:01:39 -05:00
|
|
|
aSignatureHelper.SetDateTime( nSecurityId, Date(), Time() );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
xOutputStream = OpenOutputStream( aSIGFileName );
|
2004-07-12 07:15:31 -05:00
|
|
|
xDocumentHandler = aSignatureHelper.CreateDocumentHandlerWithHeader( xOutputStream);
|
|
|
|
|
|
|
|
aSignatureHelper.ExportSignature( xDocumentHandler, signatureInformations[0]);
|
2004-07-15 02:12:10 -05:00
|
|
|
bDone = aSignatureHelper.CreateAndWriteSignature( xDocumentHandler );
|
2004-07-12 07:15:31 -05:00
|
|
|
aSignatureHelper.ExportSignature( xDocumentHandler, signatureInformations[1]);
|
|
|
|
aSignatureHelper.CloseDocumentHandler( xDocumentHandler);
|
|
|
|
|
|
|
|
if ( !bDone )
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stderr, "\nSTATUS MISSION 3: Error creating Signature!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
else
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\nSTATUS MISSION 3: Signature successfully created!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.EndMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\n\nTEST MISSION 4 : Verify the first signature file\n");
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.SetStartVerifySignatureHdl( Link( NULL, startVerifyHandler ) );
|
|
|
|
|
|
|
|
aSignatureHelper.StartMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
xInputStream = OpenInputStream( aSIGFileName );
|
2004-07-15 02:12:10 -05:00
|
|
|
bDone = aSignatureHelper.ReadAndVerifySignature( xInputStream );
|
2004-07-12 07:15:31 -05:00
|
|
|
xInputStream->closeInput();
|
|
|
|
|
|
|
|
if ( !bDone )
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stderr, "\nSTATUS MISSION 4: Error verifying Signatures!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
else
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\nSTATUS MISSION 4: All choosen Signatures veryfied successfully!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.EndMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
QueryPrintSignatureDetails( aSignatureHelper.GetSignatureInformations(), aSignatureHelper.GetSecurityEnvironment() );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\n\nTEST MISSION 5: Verify the second signature file\n");
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.StartMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
xInputStream = OpenInputStream( aSIGFileName2 );
|
2004-07-15 02:12:10 -05:00
|
|
|
bDone = aSignatureHelper.ReadAndVerifySignature( xInputStream );
|
2004-07-12 07:15:31 -05:00
|
|
|
xInputStream->closeInput();
|
|
|
|
|
|
|
|
if ( !bDone )
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stderr, "\nSTATUS MISSION 5: Error verifying Signatures!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
else
|
2005-05-18 04:01:39 -05:00
|
|
|
fprintf( stdout, "\nSTATUS MISSION 5: All choosen Signatures veryfied successfully!\n" );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
aSignatureHelper.EndMission();
|
|
|
|
|
2005-05-18 04:01:39 -05:00
|
|
|
QueryPrintSignatureDetails( aSignatureHelper.GetSignatureInformations(), aSignatureHelper.GetSecurityEnvironment() );
|
2004-07-12 07:15:31 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|