javacommons/security/src.linux/fileutils.cpp
branchRCL_3
changeset 18 9ac0a0a7da70
parent 17 0fd27995241b
child 19 71c436fe3ce0
equal deleted inserted replaced
17:0fd27995241b 18:9ac0a0a7da70
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <stdlib.h>
       
    20 #include "fileutils.h"
       
    21 #include "javajniutils.h"
       
    22 #include "com_nokia_mj_impl_security_midp_authentication_AuthenticationModule.h"
       
    23 
       
    24 using namespace java::security;
       
    25 
       
    26 char * FileUtils::computeDigest(const char* aFileName)
       
    27 {
       
    28     return NULL;
       
    29 }
       
    30 
       
    31 JNIEXPORT jstring JNICALL Java_com_nokia_mj_impl_security_midp_authentication_AuthenticationModule__1drmDecryptAndComputeHash
       
    32 (JNIEnv * env, jobject, jstring appJARPath)
       
    33 {
       
    34     return NULL;
       
    35 }
       
    36