CK_ECDH1_DERIVE_PARAMS.java revision 2362
893N/A/*
2362N/A * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
893N/A */
893N/A
893N/A/* Copyright (c) 2002 Graz University of Technology. All rights reserved.
893N/A *
2362N/A * Redistribution and use in source and binary forms, with or without
893N/A * modification, are permitted provided that the following conditions are met:
2362N/A *
893N/A * 1. Redistributions of source code must retain the above copyright notice,
893N/A * this list of conditions and the following disclaimer.
893N/A *
893N/A * 2. Redistributions in binary form must reproduce the above copyright notice,
893N/A * this list of conditions and the following disclaimer in the documentation
893N/A * and/or other materials provided with the distribution.
893N/A *
893N/A * 3. The end-user documentation included with the redistribution, if any, must
893N/A * include the following acknowledgment:
893N/A *
893N/A * "This product includes software developed by IAIK of Graz University of
2362N/A * Technology."
2362N/A *
2362N/A * Alternately, this acknowledgment may appear in the software itself, if
893N/A * and wherever such third-party acknowledgments normally appear.
893N/A *
893N/A * 4. The names "Graz University of Technology" and "IAIK of Graz University of
893N/A * Technology" must not be used to endorse or promote products derived from
893N/A * this software without prior written permission.
893N/A *
893N/A * 5. Products derived from this software may not be called
893N/A * "IAIK PKCS Wrapper", nor may "IAIK" appear in their name, without prior
893N/A * written permission of Graz University of Technology.
893N/A *
4216N/A * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
4216N/A * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
893N/A * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
893N/A * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE LICENSOR BE
893N/A * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
893N/A * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
893N/A * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
893N/A * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
893N/A * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
893N/A * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
893N/A * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
893N/A * POSSIBILITY OF SUCH DAMAGE.
893N/A */
4216N/A
4216N/Apackage sun.security.pkcs11.wrapper;
893N/A
893N/A
893N/A
893N/A/**
893N/A * class CK_ECDH1_DERIVE_PARAMS provides the parameters to the
893N/A * CKM_ECDH1_DERIVE and CKM_ECDH1_COFACTOR_DERIVE mechanisms.<p>
893N/A * <B>PKCS#11 structure:</B>
893N/A * <PRE>
893N/A * typedef struct CK_ECDH1_DERIVE_PARAMS {
893N/A * CK_EC_KDF_TYPE kdf;
893N/A * CK_ULONG ulSharedDataLen;
893N/A * CK_BYTE_PTR pSharedData;
893N/A * CK_ULONG ulPublicDataLen;
893N/A * CK_BYTE_PTR pPublicData;
893N/A * } CK_ECDH1_DERIVE_PARAMS;
893N/A * </PRE>
893N/A *
893N/A * @author Karl Scheibelhofer <Karl.Scheibelhofer@iaik.at>
893N/A */
893N/Apublic class CK_ECDH1_DERIVE_PARAMS {
893N/A
893N/A /**
893N/A * <B>PKCS#11:</B>
893N/A * <PRE>
893N/A * CK_EC_KDF_TYPE kdf;
893N/A * </PRE>
893N/A */
893N/A public long kdf;
893N/A
893N/A /**
893N/A * <B>PKCS#11:</B>
893N/A * <PRE>
893N/A * CK_ULONG ulSharedDataLen;
893N/A * CK_BYTE_PTR pSharedData;
893N/A * </PRE>
893N/A */
893N/A public byte[] pSharedData;
893N/A
893N/A /**
893N/A * <B>PKCS#11:</B>
893N/A * <PRE>
893N/A * CK_ULONG ulPublicDataLen;
893N/A * CK_BYTE_PTR pPublicData;
893N/A * </PRE>
893N/A */
893N/A public byte[] pPublicData;
public CK_ECDH1_DERIVE_PARAMS(long kdf, byte[] pSharedData, byte[] pPublicData) {
this.kdf = kdf;
this.pSharedData = pSharedData;
this.pPublicData = pPublicData;
}
/**
* Returns the string representation of CK_PKCS5_PBKD2_PARAMS.
*
* @return the string representation of CK_PKCS5_PBKD2_PARAMS
*/
public String toString() {
StringBuffer buffer = new StringBuffer();
buffer.append(Constants.INDENT);
buffer.append("kdf: 0x");
buffer.append(Functions.toFullHexString(kdf));
buffer.append(Constants.NEWLINE);
buffer.append(Constants.INDENT);
buffer.append("pSharedDataLen: ");
buffer.append(pSharedData.length);
buffer.append(Constants.NEWLINE);
buffer.append(Constants.INDENT);
buffer.append("pSharedData: ");
buffer.append(Functions.toHexString(pSharedData));
buffer.append(Constants.NEWLINE);
buffer.append(Constants.INDENT);
buffer.append("pPublicDataLen: ");
buffer.append(pPublicData.length);
buffer.append(Constants.NEWLINE);
buffer.append(Constants.INDENT);
buffer.append("pPublicData: ");
buffer.append(Functions.toHexString(pPublicData));
//buffer.append(Constants.NEWLINE);
return buffer.toString();
}
}