Class: PKCS11::CK_GCM_PARAMS
Constant Summary collapse
- SIZEOF_STRUCT =
Size of corresponding C struct in bytes
Integer
Instance Attribute Summary collapse
-
#pAAD ⇒ ASCII8BIT-String?
Accessor for pAAD and ulAADLen.
-
#pIv ⇒ ASCII8BIT-String?
Accessor for pIv and ulIvLen.
-
#ulIvBits ⇒ Integer
Accessor for ulIvBits (CK_ULONG).
-
#ulTagBits ⇒ Integer
Accessor for ulTagBits (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
#pAAD ⇒ ASCII8BIT-String?
Returns accessor for pAAD and ulAADLen.
729 730 731 |
# File 'ext/pk11_struct.doc', line 729 def pAAD @pAAD end |
#pIv ⇒ ASCII8BIT-String?
Returns accessor for pIv and ulIvLen.
727 728 729 |
# File 'ext/pk11_struct.doc', line 727 def pIv @pIv end |
#ulIvBits ⇒ Integer
Returns accessor for ulIvBits (CK_ULONG).
731 732 733 |
# File 'ext/pk11_struct.doc', line 731 def ulIvBits @ulIvBits end |
#ulTagBits ⇒ Integer
Returns accessor for ulTagBits (CK_ULONG).
733 734 735 |
# File 'ext/pk11_struct.doc', line 733 def ulTagBits @ulTagBits end |
Instance Method Details
#members ⇒ Array<String>
Returns Attributes of this struct.
725 |
# File 'ext/pk11_struct.doc', line 725 def members; end |
#to_s ⇒ String
Returns Binary copy of the C struct.
723 |
# File 'ext/pk11_struct.doc', line 723 def to_s; end |