Botan 3.4.0
Crypto and TLS for C&
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
Botan::PKCS11::Object Class Reference

#include <p11_object.h>

Public Member Functions

ObjectHandle copy (const AttributeContainer &modified_attributes) const
 
void destroy () const
 Destroys the object.
 
secure_vector< uint8_t > get_attribute_value (AttributeType attribute) const
 
ObjectHandle handle () const
 
Modulemodule () const
 
 Object (const Object &)=default
 
 Object (Session &session, const ObjectProperties &obj_props)
 
 Object (Session &session, ObjectHandle handle)
 
Objectoperator= (const Object &)=delete
 
Sessionsession () const
 
void set_attribute_value (AttributeType attribute, const secure_vector< uint8_t > &value) const
 Sets the given value for the attribute (using C_SetAttributeValue)
 
virtual ~Object ()=default
 

Static Public Member Functions

template<typename T >
static std::vector< Tsearch (Session &session)
 Searches for all objects of the given type.
 
template<typename T >
static std::vector< Tsearch (Session &session, const std::vector< Attribute > &search_template)
 Searches for all objects of the given type that match search_template
 
template<typename T >
static std::vector< Tsearch (Session &session, const std::vector< uint8_t > &id)
 Searches for all objects of the given type using the id (CKA_ID)
 
template<typename T >
static std::vector< Tsearch (Session &session, std::string_view label)
 Searches for all objects of the given type using the label (CKA_LABEL)
 
template<typename T >
static std::vector< Tsearch (Session &session, std::string_view label, const std::vector< uint8_t > &id)
 Searches for all objects of the given type using the label (CKA_LABEL) and id (CKA_ID)
 

Protected Member Functions

 Object (Session &session)
 
void reset_handle (ObjectHandle handle)
 

Detailed Description

Represents a PKCS#11 object.

Definition at line 468 of file p11_object.h.

Constructor & Destructor Documentation

◆ Object() [1/4]

Botan::PKCS11::Object::Object ( Session & session,
ObjectHandle handle )

Creates an Object from an existing PKCS#11 object

Parameters
sessionthe session the object belongs to
handlehandle of the object

Definition at line 150 of file p11_object.cpp.

150: m_session(session), m_handle(handle) {}
ObjectHandle handle() const
Definition p11_object.h:525
Session & session() const
Definition p11_object.h:528

◆ Object() [2/4]

Botan::PKCS11::Object::Object ( Session & session,
const ObjectProperties & obj_props )

Creates the object

Parameters
sessionthe session in which the object should be created
obj_propsproperties of this object

Definition at line 152 of file p11_object.cpp.

152 : m_session(session), m_handle(0) {
153 m_session.get().module()->C_CreateObject(
154 m_session.get().handle(), obj_props.data(), static_cast<Ulong>(obj_props.count()), &m_handle);
155}
CK_ULONG Ulong
Definition p11.h:814

References Botan::PKCS11::AttributeContainer::count(), and Botan::PKCS11::AttributeContainer::data().

◆ Object() [3/4]

Botan::PKCS11::Object::Object ( const Object & )
default

◆ ~Object()

virtual Botan::PKCS11::Object::~Object ( )
virtualdefault

◆ Object() [4/4]

Botan::PKCS11::Object::Object ( Session & session)
inlineprotected

Definition at line 534 of file p11_object.h.

534: m_session(session) {}

Member Function Documentation

◆ copy()

ObjectHandle Botan::PKCS11::Object::copy ( const AttributeContainer & modified_attributes) const

Copies the object

Parameters
modified_attributesthe attributes of the copied object

Definition at line 172 of file p11_object.cpp.

172 {
173 ObjectHandle copied_handle;
174 module()->C_CopyObject(m_session.get().handle(),
175 m_handle,
176 modified_attributes.data(),
177 static_cast<Ulong>(modified_attributes.count()),
178 &copied_handle);
179 return copied_handle;
180}
bool C_CopyObject(SessionHandle session, ObjectHandle object, Attribute *attribute_template_ptr, Ulong count, ObjectHandle *new_object_ptr, ReturnValue *return_value=ThrowException) const
Definition p11.cpp:252
Module & module() const
Definition p11_object.h:531
CK_OBJECT_HANDLE ObjectHandle
Definition p11.h:824

References Botan::PKCS11::LowLevel::C_CopyObject(), Botan::PKCS11::AttributeContainer::count(), Botan::PKCS11::AttributeContainer::data(), and module().

◆ destroy()

void Botan::PKCS11::Object::destroy ( ) const

Destroys the object.

Definition at line 168 of file p11_object.cpp.

168 {
169 module()->C_DestroyObject(m_session.get().handle(), m_handle);
170}
bool C_DestroyObject(SessionHandle session, ObjectHandle object, ReturnValue *return_value=ThrowException) const
Definition p11.cpp:262

References Botan::PKCS11::LowLevel::C_DestroyObject(), and module().

◆ get_attribute_value()

secure_vector< uint8_t > Botan::PKCS11::Object::get_attribute_value ( AttributeType attribute) const
Returns
the value of the given attribute (using C_GetAttributeValue)

Definition at line 157 of file p11_object.cpp.

157 {
158 std::map<AttributeType, secure_vector<uint8_t>> attribute_map = {{attribute, secure_vector<uint8_t>()}};
159 module()->C_GetAttributeValue(m_session.get().handle(), m_handle, attribute_map);
160 return attribute_map.at(attribute);
161}
bool C_GetAttributeValue(SessionHandle session, ObjectHandle object, Attribute *attribute_template_ptr, Ulong count, ReturnValue *return_value=ThrowException) const
Definition p11.cpp:273

References Botan::PKCS11::LowLevel::C_GetAttributeValue(), and module().

◆ handle()

ObjectHandle Botan::PKCS11::Object::handle ( ) const
inline
Returns
the handle of this object.

Definition at line 525 of file p11_object.h.

525{ return m_handle; }

Referenced by search().

◆ module()

Module & Botan::PKCS11::Object::module ( ) const
inline
Returns
the module this object belongs to

Definition at line 531 of file p11_object.h.

531{ return m_session.get().module(); }

Referenced by copy(), destroy(), get_attribute_value(), and set_attribute_value().

◆ operator=()

Object & Botan::PKCS11::Object::operator= ( const Object & )
delete

◆ reset_handle()

void Botan::PKCS11::Object::reset_handle ( ObjectHandle handle)
inlineprotected

Definition at line 536 of file p11_object.h.

536 {
537 if(m_handle != CK_INVALID_HANDLE) {
538 throw Invalid_Argument("Cannot reset handle on already valid PKCS11 object");
539 }
540 m_handle = handle;
541 }
#define CK_INVALID_HANDLE
Definition pkcs11t.h:75

References CK_INVALID_HANDLE.

◆ search() [1/5]

template<typename T >
std::vector< T > Botan::PKCS11::Object::search ( Session & session)
static

Searches for all objects of the given type.

Definition at line 583 of file p11_object.h.

583 {
584 return search<T>(session, AttributeContainer(T::Class).attributes());
585}

References session().

◆ search() [2/5]

template<typename T >
std::vector< T > Botan::PKCS11::Object::search ( Session & session,
const std::vector< Attribute > & search_template )
static

Searches for all objects of the given type that match search_template

Definition at line 549 of file p11_object.h.

549 {
550 ObjectFinder finder(session, search_template);
551 std::vector<ObjectHandle> handles = finder.find();
552 std::vector<T> result;
553 result.reserve(handles.size());
554 for(const auto& handle : handles) {
555 result.emplace_back(T(session, handle));
556 }
557 return result;
558}
FE_25519 T
Definition ge.cpp:34

References Botan::PKCS11::ObjectFinder::find(), handle(), session(), and T.

◆ search() [3/5]

template<typename T >
std::vector< T > Botan::PKCS11::Object::search ( Session & session,
const std::vector< uint8_t > & id )
static

Searches for all objects of the given type using the id (CKA_ID)

Definition at line 568 of file p11_object.h.

568 {
569 AttributeContainer search_template(T::Class);
570 search_template.add_binary(AttributeType::Id, id);
571 return search<T>(session, search_template.attributes());
572}

References Botan::PKCS11::AttributeContainer::add_binary(), Botan::PKCS11::AttributeContainer::attributes(), Botan::PKCS11::Id, and session().

◆ search() [4/5]

template<typename T >
std::vector< T > Botan::PKCS11::Object::search ( Session & session,
std::string_view label )
static

Searches for all objects of the given type using the label (CKA_LABEL)

Definition at line 561 of file p11_object.h.

561 {
562 AttributeContainer search_template(T::Class);
563 search_template.add_string(AttributeType::Label, label);
564 return search<T>(session, search_template.attributes());
565}

References Botan::PKCS11::AttributeContainer::add_string(), Botan::PKCS11::AttributeContainer::attributes(), Botan::PKCS11::Label, and session().

◆ search() [5/5]

template<typename T >
std::vector< T > Botan::PKCS11::Object::search ( Session & session,
std::string_view label,
const std::vector< uint8_t > & id )
static

Searches for all objects of the given type using the label (CKA_LABEL) and id (CKA_ID)

Definition at line 575 of file p11_object.h.

575 {
576 AttributeContainer search_template(T::Class);
577 search_template.add_string(AttributeType::Label, label);
578 search_template.add_binary(AttributeType::Id, id);
579 return search<T>(session, search_template.attributes());
580}

References Botan::PKCS11::AttributeContainer::add_binary(), Botan::PKCS11::AttributeContainer::add_string(), Botan::PKCS11::AttributeContainer::attributes(), Botan::PKCS11::Id, Botan::PKCS11::Label, and session().

◆ session()

Session & Botan::PKCS11::Object::session ( ) const
inline
Returns
the session this objects belongs to

Definition at line 528 of file p11_object.h.

528{ return m_session; }

Referenced by search(), search(), search(), search(), and search().

◆ set_attribute_value()

void Botan::PKCS11::Object::set_attribute_value ( AttributeType attribute,
const secure_vector< uint8_t > & value ) const

Sets the given value for the attribute (using C_SetAttributeValue)

Definition at line 163 of file p11_object.cpp.

163 {
164 std::map<AttributeType, secure_vector<uint8_t>> attribute_map = {{attribute, value}};
165 module()->C_SetAttributeValue(m_session.get().handle(), m_handle, attribute_map);
166}
bool C_SetAttributeValue(SessionHandle session, ObjectHandle object, Attribute *attribute_template_ptr, Ulong count, ReturnValue *return_value=ThrowException) const
Definition p11.cpp:282

References Botan::PKCS11::LowLevel::C_SetAttributeValue(), and module().


The documentation for this class was generated from the following files: