PKCS#11 structure:
typedef struct CK_PBE_PARAMS { CK_BYTE_PTR pInitVector; CK_UTF8CHAR_PTR pPassword; CK_ULONG ulPasswordLen; CK_BYTE_PTR pSalt; CK_ULONG ulSaltLen; CK_ULONG ulIteration; } CK_PBE_PARAMS;
Modifier and Type | Field and Description |
---|---|
public byte[] | |
public char[] | |
public byte[] | |
public long |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public String | Returns: the string representation of CK_PBE_PARAMSOverrides java. Returns the string representation of CK_PBE_PARAMS. |
pInitVector | back to summary |
---|---|
public byte[] pInitVector PKCS#11: CK_BYTE_PTR pInitVector; |
pPassword | back to summary |
---|---|
public char[] pPassword PKCS#11: CK_UTF8CHAR_PTR pPassword; CK_ULONG ulPasswordLen; |
pSalt | back to summary |
---|---|
public byte[] pSalt PKCS#11: CK_BYTE_PTR pSalt CK_ULONG ulSaltLen; |
ulIteration | back to summary |
---|---|
public long ulIteration PKCS#11: CK_ULONG ulIteration; |
CK_PBE_PARAMS | back to summary |
---|---|
public CK_PBE_PARAMS(char[] pPassword, byte[] pSalt, long ulIteration) |
toString | back to summary |
---|---|
public String toString() Overrides java. Returns the string representation of CK_PBE_PARAMS.
|