Class: PKCS11::Luna::CK_PBE_PARAMS
- Defined in:
- ext/pk11l_struct.doc
Constant Summary collapse
- SIZEOF_STRUCT =
Size of corresponding C struct in bytes
Integer
Instance Attribute Summary collapse
-
#pInitVector ⇒ String?
Accessor for pInitVector.
-
#pPassword ⇒ String?
Accessor for pPassword and ulPasswordLen.
-
#pSalt ⇒ String?
Accessor for pSalt and ulSaltLen.
-
#ulIteration ⇒ Integer
Accessor for ulIteration (CK_ULONG).
Instance Method Summary collapse
-
#members ⇒ Array<String>
Attributes of this struct.
-
#to_s ⇒ String
Binary copy of the C struct.
Instance Attribute Details
#pInitVector ⇒ String?
Returns accessor for pInitVector.
321 322 323 |
# File 'ext/pk11l_struct.doc', line 321 def pInitVector @pInitVector end |
#pPassword ⇒ String?
Returns accessor for pPassword and ulPasswordLen.
323 324 325 |
# File 'ext/pk11l_struct.doc', line 323 def pPassword @pPassword end |
#pSalt ⇒ String?
Returns accessor for pSalt and ulSaltLen.
325 326 327 |
# File 'ext/pk11l_struct.doc', line 325 def pSalt @pSalt end |
#ulIteration ⇒ Integer
Returns accessor for ulIteration (CK_ULONG).
327 328 329 |
# File 'ext/pk11l_struct.doc', line 327 def ulIteration @ulIteration end |
Instance Method Details
#members ⇒ Array<String>
Returns Attributes of this struct.
319 |
# File 'ext/pk11l_struct.doc', line 319 def members; end |
#to_s ⇒ String
Returns Binary copy of the C struct.
317 |
# File 'ext/pk11l_struct.doc', line 317 def to_s; end |