class Win32::Certstore::Mixin::Crypto::CRYPT_NAME_BLOB

Public Class Methods

new(str = nil) click to toggle source
Calls superclass method
# File lib/win32/certstore/mixin/crypto.rb, line 130
def initialize(str = nil)
  super(nil)
  if str
    self[:pbData] = FFI::MemoryPointer.new(2, 128)
  end
end