class Chef::ReservedNames::Win32::API::Crypto::CRYPT_INTEGER_BLOB
Public Class Methods
new(str = nil)
click to toggle source
Calls superclass method
# File lib/chef/win32/api/crypto.rb, line 40 def initialize(str = nil) super(nil) if str self[:pbData] = FFI::MemoryPointer.from_string(str) self[:cbData] = str.bytesize end end