Method: PKCS11::Session#C_FindObjects
- Defined in:
- lib/pkcs11/session.rb
#C_FindObjects(max_count) ⇒ Array<PKCS11::Object>
Continues a search for token and session objects that match a template, obtaining additional object handles.
See #find_objects for convenience
91 92 93 94 |
# File 'lib/pkcs11/session.rb', line 91 def C_FindObjects(max_count) objs = @pk.C_FindObjects(@sess, max_count) objs.map{|obj| Object.new @pk, @sess, obj } end |