Class: PKCS11::CK_CCM_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.
-
#pNonce ⇒ ASCII8BIT-String?
Accessor for pNonce and ulNonceLen.
-
#ulDataLen ⇒ Integer
Accessor for ulDataLen (CK_ULONG).
-
#ulMACLen ⇒ Integer
Accessor for ulMACLen (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.
745 746 747 |
# File 'ext/pk11_struct.doc', line 745 def pAAD @pAAD end |
#pNonce ⇒ ASCII8BIT-String?
Returns accessor for pNonce and ulNonceLen.
743 744 745 |
# File 'ext/pk11_struct.doc', line 743 def pNonce @pNonce end |
#ulDataLen ⇒ Integer
Returns accessor for ulDataLen (CK_ULONG).
747 748 749 |
# File 'ext/pk11_struct.doc', line 747 def ulDataLen @ulDataLen end |
#ulMACLen ⇒ Integer
Returns accessor for ulMACLen (CK_ULONG).
749 750 751 |
# File 'ext/pk11_struct.doc', line 749 def ulMACLen @ulMACLen end |
Instance Method Details
#members ⇒ Array<String>
Returns Attributes of this struct.
741 |
# File 'ext/pk11_struct.doc', line 741 def members; end |
#to_s ⇒ String
Returns Binary copy of the C struct.
739 |
# File 'ext/pk11_struct.doc', line 739 def to_s; end |