cryptoservices/certificateandkeymgmt/pkcs10/pkcs10.cpp
changeset 8 35751d3474b7
parent 0 2c201484c85f
equal deleted inserted replaced
2:675a964f4eb5 8:35751d3474b7
    24 #include <x500dn.h>
    24 #include <x500dn.h>
    25 #include <x509keys.h>
    25 #include <x509keys.h>
    26 #include <hash.h>
    26 #include <hash.h>
    27 #include <pkcs10attr.h>
    27 #include <pkcs10attr.h>
    28 #include "keyhelper.h"
    28 #include "keyhelper.h"
       
    29 #include <mctkeystoreuids.h>
    29 
    30 
    30 void Panic(TInt aError)
    31 void Panic(TInt aError)
    31 	{
    32 	{
    32 	_LIT(KCategory, "PKCS10");
    33 	_LIT(KCategory, "PKCS10");
    33 	User::Panic(KCategory, aError);
    34 	User::Panic(KCategory, aError);
   350 	CleanupStack::PopAndDestroy(root);
   351 	CleanupStack::PopAndDestroy(root);
   351 
   352 
   352 	*iResult = der;
   353 	*iResult = der;
   353 	User::RequestComplete(iClientStatus, KErrNone);
   354 	User::RequestComplete(iClientStatus, KErrNone);
   354 	}
   355 	}
       
   356