0N/A#
2362N/A# Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
2362N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A# Define public interface.
0N/A
0N/ASUNWprivate_1.1 {
0N/A global:
0N/A JNI_OnLoad;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_initializeLibrary;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_finalizeLibrary;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_connect;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_disconnect;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Initialize;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Finalize;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetInfo;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetSlotList;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetSlotInfo;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetTokenInfo;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetMechanismList;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetMechanismInfo;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1InitToken;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1InitPIN;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1SetPIN;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1OpenSession;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1CloseSession;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1CloseAllSessions;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetSessionInfo;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetOperationState;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1SetOperationState;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Login;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Logout;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1CreateObject;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1CopyObject;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DestroyObject;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetObjectSize;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetAttributeValue;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SetAttributeValue;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1FindObjectsInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1FindObjects;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1FindObjectsFinal;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1EncryptInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Encrypt;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1EncryptUpdate;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1EncryptFinal;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Decrypt;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptUpdate;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptFinal;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestSingle;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestUpdate;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestKey;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestFinal;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Sign;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignUpdate;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignFinal;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignRecoverInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignRecover;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1VerifyInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1Verify;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1VerifyUpdate;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1VerifyFinal;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1VerifyRecoverInit;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1VerifyRecover;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestEncryptUpdate;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptDigestUpdate;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignEncryptUpdate;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptVerifyUpdate;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GenerateKey;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GenerateKeyPair;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1WrapKey;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1UnwrapKey;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1DeriveKey;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1SeedRandom;
0N/A Java_sun_security_pkcs11_wrapper_PKCS11_C_1GenerateRandom;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetFunctionStatus;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1CancelFunction;
0N/A# Java_sun_security_pkcs11_wrapper_PKCS11_C_1WaitForSlotEvent;
0N/A Java_sun_security_pkcs11_Secmod_nssGetLibraryHandle;
0N/A Java_sun_security_pkcs11_Secmod_nssLoadLibrary;
0N/A Java_sun_security_pkcs11_Secmod_nssVersionCheck;
0N/A Java_sun_security_pkcs11_Secmod_nssInit;
0N/A Java_sun_security_pkcs11_Secmod_nssGetModuleList;
0N/A
0N/A local:
0N/A *;
0N/A};