public class

CK_PBE_PARAMS

extends Object
java.lang.Object
   ↳ sun.security.pkcs11.wrapper.CK_PBE_PARAMS

Class Overview

class CK_PBE_PARAMS provides all of the necessary information required byte the CKM_PBE mechanisms and the CKM_PBA_SHA1_WITH_SHA1_HMAC mechanism.

PKCS#11 structure:

 typedef struct CK_PBE_PARAMS {
   CK_CHAR_PTR pInitVector;
   CK_CHAR_PTR pPassword;
   CK_ULONG ulPasswordLen;
   CK_CHAR_PTR pSalt;
   CK_ULONG ulSaltLen;
   CK_ULONG ulIteration;
 } CK_PBE_PARAMS;
 

Summary

Fields
public char[] pInitVector PKCS#11:
   CK_CHAR_PTR pInitVector;
 
public char[] pPassword PKCS#11:
   CK_CHAR_PTR pPassword;
   CK_ULONG ulPasswordLen;
 
public char[] pSalt PKCS#11:
   CK_CHAR_PTR pSalt
   CK_ULONG ulSaltLen;
 
public long ulIteration PKCS#11:
   CK_ULONG ulIteration;
 
Public Constructors
CK_PBE_PARAMS()
Public Methods
String toString()
Returns the string representation of CK_PBE_PARAMS.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public char[] pInitVector

PKCS#11:

   CK_CHAR_PTR pInitVector;
 

public char[] pPassword

PKCS#11:

   CK_CHAR_PTR pPassword;
   CK_ULONG ulPasswordLen;
 

public char[] pSalt

PKCS#11:

   CK_CHAR_PTR pSalt
   CK_ULONG ulSaltLen;
 

public long ulIteration

PKCS#11:

   CK_ULONG ulIteration;
 

Public Constructors

public CK_PBE_PARAMS ()

Public Methods

public String toString ()

Returns the string representation of CK_PBE_PARAMS.

Returns
  • the string representation of CK_PBE_PARAMS