Class: PKCS11::CK_PBE_PARAMS
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.
Methods inherited from CStruct
Instance Attribute Details
#pInitVector ⇒ String?
Returns accessor for pInitVector.
443 444 445 |
# File 'ext/pk11_struct.doc', line 443 def pInitVector @pInitVector end |
#pPassword ⇒ String?
Returns accessor for pPassword and ulPasswordLen.
445 446 447 |
# File 'ext/pk11_struct.doc', line 445 def pPassword @pPassword end |
#pSalt ⇒ String?
Returns accessor for pSalt and ulSaltLen.
447 448 449 |
# File 'ext/pk11_struct.doc', line 447 def pSalt @pSalt end |
#ulIteration ⇒ Integer
Returns accessor for ulIteration (CK_ULONG).
449 450 451 |
# File 'ext/pk11_struct.doc', line 449 def ulIteration @ulIteration end |
Instance Method Details
#members ⇒ Array<String>
Returns Attributes of this struct.
441 |
# File 'ext/pk11_struct.doc', line 441 def members; end |
#to_s ⇒ String
Returns Binary copy of the C struct.
439 |
# File 'ext/pk11_struct.doc', line 439 def to_s; end |