update dev300-m58
[ooovba.git] / xmlsecurity / tools / demo / verifydemo.cxx
blob4130ecdc680c578a87261e3b911050ee8045ba11
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: verifydemo.cxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_xmlsecurity.hxx"
34 #include "util.hxx"
36 #include <stdio.h>
37 #include <cppuhelper/servicefactory.hxx>
39 #include <xmlsecurity/xmlsignaturehelper.hxx>
41 using namespace ::com::sun::star;
43 long startVerifyHandler( void *, void * )
45 return QueryVerifySignature();
48 int SAL_CALL main( int argc, char **argv )
50 if( argc < 2 )
52 fprintf( stderr, "Usage: %s <signature file> [<cryptoken>]\n" , argv[0] ) ;
53 return -1 ;
56 rtl::OUString aSIGFileName = rtl::OUString::createFromAscii(argv[1]);
57 rtl::OUString aCryptoToken;
58 if ( argc >= 3 )
59 aCryptoToken = rtl::OUString::createFromAscii(argv[2]);
61 uno::Reference< lang::XMultiServiceFactory > xMSF = CreateDemoServiceFactory();
65 * creates a signature helper
67 XMLSignatureHelper aSignatureHelper( xMSF );
70 * creates a security context.
72 bool bInit = aSignatureHelper.Init( aCryptoToken );
73 if ( !bInit )
75 fprintf( stderr, "Error initializing security context!" );
76 return -1;
80 * configures the start-verify handler
82 aSignatureHelper.SetStartVerifySignatureHdl( Link( NULL, startVerifyHandler ) );
84 aSignatureHelper.StartMission();
87 * verifies the signature
89 uno::Reference< io::XInputStream > xInputStream = OpenInputStream( aSIGFileName );
90 bool bDone = aSignatureHelper.ReadAndVerifySignature( xInputStream );
93 * closes the signature stream
95 xInputStream->closeInput();
97 if ( !bDone )
99 fprintf( stderr, "\nSTATUS: Error verifying Signature!\n" );
101 else
103 fprintf( stdout, "\nSTATUS: All choosen Signatures veryfied successfully!\n" );
106 aSignatureHelper.EndMission();
108 QueryPrintSignatureDetails( aSignatureHelper.GetSignatureInformations(), aSignatureHelper.GetSecurityEnvironment() );
110 return 0;