summaryrefslogtreecommitdiffstats
path: root/comm/third_party/botan/doc/api_ref/pkcs11.rst
blob: 9e0ddfa679b9a1ae700fe2e08f84cc4fe9e354d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
.. _pkcs11:

PKCS#11
========================================

.. versionadded:: 1.11.31

|

PKCS#11 is a platform-independent interface for accessing smart cards and
hardware security modules (HSM). Vendors of PKCS#11 compatible devices usually
provide a so called middleware or "PKCS#11 module" which implements the PKCS#11
standard. This middleware translates calls from the platform-independent PKCS#11
API to device specific calls. So application developers don't have to write smart card
or HSM specific code for each device they want to support.

   .. note::

     The Botan PKCS#11 interface is implemented against version v2.40 of the standard.

Botan wraps the C PKCS#11 API to provide a C++ PKCS#11 interface. This is done
in two levels of abstraction: a low level API (see :ref:`pkcs11_low_level`) and
a high level API (see :ref:`pkcs11_high_level`). The low level API provides
access to all functions that are specified by the standard. The high level API
represents an object oriented approach to use PKCS#11 compatible devices but
only provides a subset of the functions described in the standard.

To use the PKCS#11 implementation the ``pkcs11`` module has to be enabled.

   .. note::

      Both PKCS#11 APIs live in the namespace ``Botan::PKCS11``

.. _pkcs11_low_level:

Low Level API
----------------------------------------

The PKCS#11 standards committee provides header files (``pkcs11.h``, ``pkcs11f.h`` and
``pkcs11t.h``) which define the PKCS#11 API in the C programming language. These
header files could be used directly to access PKCS#11 compatible smart cards or
HSMs. The external header files are shipped with Botan in version v2.4 of the standard. The PKCS#11 low
level API wraps the original PKCS#11 API, but still allows to access all functions described in the
standard and has the advantage that it is a C++ interface with features like RAII, exceptions
and automatic memory management.

The low level API is implemented by the :cpp:class:`LowLevel` class and can be accessed by
including the header ``botan/p11.h``.

Preface
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

All constants that belong together in the PKCS#11 standard are grouped into C++
enum classes. For example the different user types are grouped in the
:cpp:enum:`UserType` enumeration:

.. cpp:enum-class:: UserType : CK_USER_TYPE

   .. cpp:enumerator:: UserType::SO = CKU_SO
   .. cpp:enumerator:: UserType::User = CKU_USER
   .. cpp:enumerator:: UserType::ContextSpecific = CKU_CONTEXT_SPECIFIC

Additionally, all types that are used by the low or high level API are mapped by
type aliases to more C++ like names. For instance:

.. cpp:type:: FunctionListPtr = CK_FUNCTION_LIST_PTR

.. rubric:: C-API Wrapping

There is at least one method in the :cpp:class:`LowLevel` class that corresponds to a PKCS#11
function. For example the :cpp:func:`C_GetSlotList` method in the :cpp:class:`LowLevel` class is defined as follows:

.. cpp:class:: LowLevel

   .. cpp:function:: bool C_GetSlotList(Bbool token_present, SlotId* slot_list_ptr, Ulong* count_ptr, ReturnValue* return_value = ThrowException) const

The :cpp:class:`LowLevel` class calls the PKCS#11 function from the function list of the PKCS#11 module:

   .. code-block:: c

      CK_DEFINE_FUNCTION(CK_RV, C_GetSlotList)( CK_BBOOL tokenPresent, CK_SLOT_ID_PTR pSlotList,
                                                CK_ULONG_PTR pulCount )

Where it makes sense there is also an overload of the :cpp:class:`LowLevel` method to make usage easier and safer:

   .. cpp:function:: bool C_GetSlotList( bool token_present, std::vector<SlotId>& slot_ids, ReturnValue* return_value = ThrowException ) const

With this overload the user of this API just has to pass a vector of :cpp:type:`SlotId` instead of pointers
to preallocated memory for the slot list and the number of elements. Additionally, there is no need
to call the method twice in order to determine the number of elements first.

Another example is the :cpp:func:`C_InitPIN` overload:

   .. cpp:function:: template<typename Talloc> bool C_InitPIN( SessionHandle session, const std::vector<uint8_t, TAlloc>& pin, ReturnValue* return_value = ThrowException ) const

The templated ``pin`` parameter allows to pass the PIN as a ``std::vector<uint8_t>`` or a ``secure_vector<uint8_t>``.
If used with a ``secure_vector`` it is assured that the memory is securely erased when the ``pin`` object is no longer needed.

Error Handling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

All possible PKCS#11 return values are represented by the enum class:

.. cpp:enum-class:: ReturnValue : CK_RV

All methods of the :cpp:class:`LowLevel` class have a default parameter ``ReturnValue* return_value = ThrowException``.
This parameter controls the error handling of all :cpp:class:`LowLevel` methods. The default
behavior ``return_value = ThrowException`` is to throw an exception if the method does
not complete successfully. If a non-``NULL`` pointer is passed, ``return_value`` receives the
return value of the PKCS#11 function and no exception is thrown. In case ``nullptr`` is
passed as ``return_value``, the exact return value is ignored and the method just returns
``true`` if the function succeeds and ``false`` otherwise.

Getting started
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

An object of this class can be instantiated by providing a :cpp:type:`FunctionListPtr` to the :cpp:class:`LowLevel` constructor:

   .. cpp:function:: explicit LowLevel(FunctionListPtr ptr)

The :cpp:class:`LowLevel` class provides a static method to retrieve a :cpp:type:`FunctionListPtr`
from a PKCS#11 module file:

   .. cpp:function:: static bool C_GetFunctionList(Dynamically_Loaded_Library& pkcs11_module, FunctionListPtr* function_list_ptr_ptr, ReturnValue* return_value = ThrowException)

----------

Code Example: Object Instantiation

   .. code-block:: cpp

      Botan::Dynamically_Loaded_Library pkcs11_module( "C:\\pkcs11-middleware\\library.dll" );
      Botan::PKCS11::FunctionListPtr func_list = nullptr;
      Botan::PKCS11::LowLevel::C_GetFunctionList( pkcs11_module, &func_list );
      Botan::PKCS11::LowLevel p11_low_level( func_list );

----------

Code Example: PKCS#11 Module Initialization

   .. code-block:: cpp

      Botan::PKCS11::LowLevel p11_low_level(func_list);

      Botan::PKCS11::C_InitializeArgs init_args = { nullptr, nullptr, nullptr, nullptr,
              static_cast<CK_FLAGS>(Botan::PKCS11::Flag::OsLockingOk), nullptr };

      p11_low_level.C_Initialize(&init_args);

      // work with the token

      p11_low_level.C_Finalize(nullptr);

More code examples can be found in the test suite in the ``test_pkcs11_low_level.cpp`` file.

.. _pkcs11_high_level:

High Level API
----------------------------------------

The high level API provides access to the most commonly used PKCS#11 functionality in an
object oriented manner. Functionality of the high level API includes:

* Loading/unloading of PKCS#11 modules
* Initialization of tokens
* Change of PIN/SO-PIN
* Session management
* Random number generation
* Enumeration of objects on the token (certificates, public keys, private keys)
* Import/export/deletion of certificates
* Generation/import/export/deletion of RSA and EC public and private keys
* Encryption/decryption using RSA with support for OAEP and PKCS1-v1_5 (and raw)
* Signature generation/verification using RSA with support for PSS and PKCS1-v1_5 (and raw)
* Signature generation/verification using ECDSA
* Key derivation using ECDH

Module
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The :cpp:class:`Module` class represents a PKCS#11 shared library (module) and is defined in
``botan/p11_module.h``.

It is constructed from a a file path to a PKCS#11 module and optional :cpp:type:`C_InitializeArgs`:

.. cpp:class:: Module

   .. code-block:: cpp

      Module(const std::string& file_path, C_InitializeArgs init_args =
         { nullptr, nullptr, nullptr, nullptr, static_cast<CK_FLAGS>(Flag::OsLockingOk), nullptr })

   It loads the shared library and calls :cpp:func:`C_Initialize` with the provided :cpp:type:`C_InitializeArgs`.
   On destruction of the object :cpp:func:`C_Finalize` is called.

There are two more methods in this class. One is for reloading the shared library
and reinitializing the PKCS#11 module:

   .. code-block:: cpp

      void reload(C_InitializeArgs init_args =
         { nullptr, nullptr, nullptr, nullptr, static_cast< CK_FLAGS >(Flag::OsLockingOk), nullptr });

The other one is for getting general information about the PKCS#11 module:

   .. cpp:function:: Info get_info() const

      This function calls :cpp:func:`C_GetInfo` internally.

----------

Code example:

   .. code-block:: cpp

      Botan::PKCS11::Module module( "C:\\pkcs11-middleware\\library.dll" );

      // Sometimes useful if a newly connected token is not detected by the PKCS#11 module
      module.reload();

      Botan::PKCS11::Info info = module.get_info();

      // print library version
      std::cout << std::to_string( info.libraryVersion.major ) << "."
         << std::to_string( info.libraryVersion.minor ) << std::endl;

Slot
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The :cpp:class:`Slot` class represents a PKCS#11 slot and is defined in
``botan/p11_slot.h``.

A PKCS#11 slot is usually a smart card reader that potentially contains a token.

.. cpp:class:: Slot

   .. cpp:function:: Slot(Module& module, SlotId slot_id)

      To instantiate this class a reference to a :cpp:class:`Module` object and a ``slot_id`` have to be passed
      to the constructor.

   .. cpp:function:: static std::vector<SlotId> get_available_slots(Module& module, bool token_present)

      Retrieve available slot ids by calling this static method.

      The parameter ``token_present`` controls whether all slots or only slots with a
      token attached are returned by this method. This method calls :cpp:func:`C_GetSlotList()`.

   .. cpp:function:: SlotInfo get_slot_info() const

      Returns information about the slot. Calls :cpp:func:`C_GetSlotInfo`.

   .. cpp:function:: TokenInfo get_token_info() const

      Obtains information about a particular token in the system. Calls :cpp:func:`C_GetTokenInfo`.

   .. cpp:function:: std::vector<MechanismType> get_mechanism_list() const

      Obtains a list of mechanism types supported by the slot. Calls :cpp:func:`C_GetMechanismList`.

   .. cpp:function:: MechanismInfo get_mechanism_info(MechanismType mechanism_type) const

      Obtains information about a particular mechanism possibly supported by a slot.
      Calls :cpp:func:`C_GetMechanismInfo`.

   .. cpp:function:: void initialize(const std::string& label, const secure_string& so_pin) const

      Calls :cpp:func:`C_InitToken` to initialize the token. The ``label`` must not exceed 32 bytes.
      The current PIN of the security officer must be passed in ``so_pin`` if the token
      is reinitialized or if it's a factory new token, the ``so_pin`` that is passed will initially be set.

----------

Code example:

   .. code-block:: cpp

      // only slots with connected token
      std::vector<Botan::PKCS11::SlotId> slots = Botan::PKCS11::Slot::get_available_slots( module, true );

      // use first slot
      Botan::PKCS11::Slot slot( module, slots.at( 0 ) );

      // print firmware version of the slot
      Botan::PKCS11::SlotInfo slot_info = slot.get_slot_info();
      std::cout << std::to_string( slot_info.firmwareVersion.major ) << "."
         << std::to_string( slot_info.firmwareVersion.minor ) << std::endl;

      // print firmware version of the token
      Botan::PKCS11::TokenInfo token_info = slot.get_token_info();
      std::cout << std::to_string( token_info.firmwareVersion.major ) << "."
         << std::to_string( token_info.firmwareVersion.minor ) << std::endl;

      // retrieve all mechanisms supported by the token
      std::vector<Botan::PKCS11::MechanismType> mechanisms = slot.get_mechanism_list();

      // retrieve information about a particular mechanism
      Botan::PKCS11::MechanismInfo mech_info =
         slot.get_mechanism_info( Botan::PKCS11::MechanismType::RsaPkcsOaep );

      // maximum RSA key length supported:
      std::cout << mech_info.ulMaxKeySize << std::endl;

      // initialize the token
      Botan::PKCS11::secure_string so_pin( 8, '0' );
      slot.initialize( "Botan PKCS11 documentation test label", so_pin );

Session
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The :cpp:class:`Session` class represents a PKCS#11 session and is defined in ``botan/p11_session.h``.

A session is a logical connection between an application and a token.

.. cpp:class:: Session

   There are two constructors to create a new session and one constructor to
   take ownership of an existing session. The destructor calls
   :cpp:func:`C_Logout` if a user is logged in to this session and always
   :cpp:func:`C_CloseSession`.

   .. cpp:function:: Session(Slot& slot, bool read_only)

      To initialize a session object a :cpp:class:`Slot` has to be specified on which the session
      should operate. ``read_only`` specifies whether the session should be read only or read write.
      Calls :cpp:func:`C_OpenSession`.

   .. cpp:function:: Session(Slot& slot, Flags flags, VoidPtr callback_data, Notify notify_callback)

      Creates a new session by passing a :cpp:class:`Slot`, session ``flags``, ``callback_data`` and a
      ``notify_callback``. Calls :cpp:func:`C_OpenSession`.

   .. cpp:function:: Session(Slot& slot, SessionHandle handle)

      Takes ownership of an existing session by passing :cpp:class:`Slot` and a session ``handle``.

   .. cpp:function:: SessionHandle release()

      Returns the released :cpp:type:`SessionHandle`

   .. cpp:function:: void login(UserType userType, const secure_string& pin)

      Login to this session by passing :cpp:enum:`UserType` and ``pin``. Calls :cpp:func:`C_Login`.

   .. cpp:function:: void logoff()

      Logout from this session. Not mandatory because on destruction of the :cpp:class:`Session` object
      this is done automatically.

   .. cpp:function:: SessionInfo get_info() const

      Returns information about this session. Calls :cpp:func:`C_GetSessionInfo`.

   .. cpp:function:: void set_pin(const secure_string& old_pin, const secure_string& new_pin) const

      Calls :cpp:func:`C_SetPIN` to change the PIN of the logged in user using the ``old_pin``.

   .. cpp:function:: void init_pin(const secure_string& new_pin)

      Calls :cpp:func:`C_InitPIN` to change or initialize the PIN using the SO_PIN (requires a logged in session).

----------

Code example:

   .. code-block:: cpp

      // open read only session
      {
      Botan::PKCS11::Session read_only_session( slot, true );
      }

      // open read write session
      {
      Botan::PKCS11::Session read_write_session( slot, false );
      }

      // open read write session by passing flags
      {
      Botan::PKCS11::Flags flags =
         Botan::PKCS11::flags( Botan::PKCS11::Flag::SerialSession | Botan::PKCS11::Flag::RwSession );

      Botan::PKCS11::Session read_write_session( slot, flags, nullptr, nullptr );
      }

      // move ownership of a session
      {
      Botan::PKCS11::Session session( slot, false );
      Botan::PKCS11::SessionHandle handle = session.release();

      Botan::PKCS11::Session session2( slot, handle );
      }

      Botan::PKCS11::Session session( slot, false );

      // get session info
      Botan::PKCS11::SessionInfo info = session.get_info();
      std::cout << info.slotID << std::endl;

      // login
      Botan::PKCS11::secure_string pin = { '1', '2', '3', '4', '5', '6' };
      session.login( Botan::PKCS11::UserType::User, pin );

      // set pin
      Botan::PKCS11::secure_string new_pin = { '6', '5', '4', '3', '2', '1' };
      session.set_pin( pin, new_pin );

      // logoff
      session.logoff();

      // log in as security officer
      Botan::PKCS11::secure_string so_pin = { '0', '0', '0', '0', '0', '0', '0', '0' };
      session.login( Botan::PKCS11::UserType::SO, so_pin );

      // change pin to old pin
      session.init_pin( pin );

Objects
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

PKCS#11 objects consist of various attributes (:c:type:`CK_ATTRIBUTE`). For example :c:macro:`CKA_TOKEN`
describes if a PKCS#11 object is a session object or a token object. The helper class :cpp:class:`AttributeContainer`
helps with storing these attributes. The class is defined in ``botan/p11_object.h``.

.. cpp:class:: AttributeContainer

Attributes can be set in an :cpp:class:`AttributeContainer` by various ``add_`` methods:

   .. cpp:function:: void add_class(ObjectClass object_class)

      Add a class attribute (:c:macro:`CKA_CLASS` / :cpp:enumerator:`AttributeType::Class`)

   .. cpp:function:: void add_string(AttributeType attribute, const std::string& value)

      Add a string attribute (e.g. :c:macro:`CKA_LABEL` / :cpp:enumerator:`AttributeType::Label`).

   .. cpp:function:: void AttributeContainer::add_binary(AttributeType attribute, const uint8_t* value, size_t length)

      Add a binary attribute (e.g. :c:macro:`CKA_ID` / :cpp:enumerator:`AttributeType::Id`).

   .. cpp:function:: template<typename TAlloc> void AttributeContainer::add_binary(AttributeType attribute, const std::vector<uint8_t, TAlloc>& binary)

      Add a binary attribute by passing a ``vector``/``secure_vector`` (e.g. :c:macro:`CKA_ID` / :cpp:enumerator:`AttributeType::Id`).

   .. cpp:function:: void AttributeContainer::add_bool(AttributeType attribute, bool value)

      Add a bool attribute (e.g. :c:macro:`CKA_SENSITIVE` / :cpp:enumerator:`AttributeType::Sensitive`).

   .. cpp:function:: template<typename T> void AttributeContainer::add_numeric(AttributeType attribute, T value)

       Add a numeric attribute (e.g. :c:macro:`CKA_MODULUS_BITS` / :cpp:enumerator:`AttributeType::ModulusBits`).

.. rubric:: Object Properties

The PKCS#11 standard defines the mandatory and optional attributes for each object class.
The mandatory and optional attribute requirements are mapped in so called property classes.
Mandatory attributes are set in the constructor, optional attributes can be set via ``set_`` methods.

In the top hierarchy is the :cpp:class:`ObjectProperties` class which inherits from the :cpp:class:`AttributeContainer`.
This class represents the common attributes of all PKCS#11 objects.

.. cpp:class:: ObjectProperties : public AttributeContainer

The constructor is defined as follows:

   .. cpp:function:: ObjectProperties(ObjectClass object_class)

      Every PKCS#11 object needs an object class attribute.

The next level defines the :cpp:class:`StorageObjectProperties` class which inherits from
:cpp:class:`ObjectProperties`.

.. cpp:class:: StorageObjectProperties : public ObjectProperties

The only mandatory attribute is the object class, so the constructor is
defined as follows:

   .. cpp:function:: StorageObjectProperties(ObjectClass object_class)

But in contrast to the :cpp:class:`ObjectProperties` class there are various setter methods. For example to
set the :cpp:enumerator:`AttributeType::Label`:

   .. cpp:function:: void set_label(const std::string& label)

      Sets the label description of the object (RFC2279 string).

The remaining hierarchy is defined as follows:

* :cpp:class:`DataObjectProperties` inherits from :cpp:class:`StorageObjectProperties`
* :cpp:class:`CertificateProperties` inherits from :cpp:class:`StorageObjectProperties`
* :cpp:class:`DomainParameterProperties` inherits from :cpp:class:`StorageObjectProperties`
* :cpp:class:`KeyProperties` inherits from :cpp:class:`StorageObjectProperties`
* :cpp:class:`PublicKeyProperties` inherits from :cpp:class:`KeyProperties`
* :cpp:class:`PrivateKeyProperties` inherits from :cpp:class:`KeyProperties`
* :cpp:class:`SecretKeyProperties` inherits from :cpp:class:`KeyProperties`

PKCS#11 objects themselves are represented by the :cpp:class:`Object` class.

.. cpp:class:: Object

Following constructors are defined:

   .. cpp:function:: Object(Session& session, ObjectHandle handle)

      Takes ownership over an existing object.

   .. cpp:function:: Object(Session& session, const ObjectProperties& obj_props)

      Creates a new object with the :cpp:class:`ObjectProperties` provided in ``obj_props``.

The other methods are:

   .. cpp:function:: secure_vector<uint8_t> get_attribute_value(AttributeType attribute) const

      Returns the value of the given attribute (using :cpp:func:`C_GetAttributeValue`)

   .. cpp:function:: void set_attribute_value(AttributeType attribute, const secure_vector<uint8_t>& value) const

      Sets the given value for the attribute (using :cpp:func:`C_SetAttributeValue`)

   .. cpp:function:: void destroy() const

      Destroys the object.

   .. cpp:function:: ObjectHandle copy(const AttributeContainer& modified_attributes) const

      Allows to copy the object with modified attributes.

And static methods to search for objects:

   .. cpp:function:: template<typename T> static std::vector<T> search(Session& session, const std::vector<Attribute>& search_template)

      Searches for all objects of the given type that match ``search_template``.

   .. cpp:function:: template<typename T> static std::vector<T> search(Session& session, const std::string& label)

      Searches for all objects of the given type using the label (:c:macro:`CKA_LABEL`).

   .. cpp:function:: template<typename T> static std::vector<T> search(Session& session, const std::vector<uint8_t>& id)

      Searches for all objects of the given type using the id (:c:macro:`CKA_ID`).

   .. cpp:function:: template<typename T> static std::vector<T> search(Session& session, const std::string& label, const std::vector<uint8_t>& id)

      Searches for all objects of the given type using the label (:c:macro:`CKA_LABEL`) and id (:c:macro:`CKA_ID`).

   .. cpp:function:: template<typename T> static std::vector<T> search(Session& session)

      Searches for all objects of the given type.

.. rubric:: The ObjectFinder

Another way for searching objects is to use the :cpp:class:`ObjectFinder` class. This class
manages calls to the ``C_FindObjects*`` functions: :cpp:func:`C_FindObjectsInit`, :cpp:func:`C_FindObjects`
and :cpp:func:`C_FindObjectsFinal`.

.. cpp:class:: ObjectFinder

The constructor has the following signature:

   .. cpp:function:: ObjectFinder(Session& session, const std::vector<Attribute>& search_template)

      A search can be prepared with an :cpp:class:`ObjectSearcher` by passing a :cpp:class:`Session` and a ``search_template``.

The actual search operation is started by calling the :cpp:func:`find` method:

   .. cpp:function:: std::vector<ObjectHandle> find(std::uint32_t max_count = 100) const

      Starts or continues a search for token and session objects that match a template. ``max_count``
      specifies the maximum number of search results (object handles) that are returned.

   .. cpp:function:: void finish()

      Finishes the search operation manually to allow a new :cpp:class:`ObjectFinder` to exist.
      Otherwise the search is finished by the destructor.

----------

Code example:

   .. code-block:: cpp

      // create an simple data object
      Botan::secure_vector<uint8_t> value = { 0x00, 0x01 ,0x02, 0x03 };
      std::size_t id = 1337;
      std::string label = "test data object";

      // set properties of the new object
      Botan::PKCS11::DataObjectProperties data_obj_props;
      data_obj_props.set_label( label );
      data_obj_props.set_value( value );
      data_obj_props.set_token( true );
      data_obj_props.set_modifiable( true );
      data_obj_props.set_object_id( Botan::DER_Encoder().encode( id ).get_contents_unlocked() );

      // create the object
      Botan::PKCS11::Object data_obj( session, data_obj_props );

      // get label of this object
      Botan::PKCS11::secure_string retrieved_label =
         data_obj.get_attribute_value( Botan::PKCS11::AttributeType::Label );

      // set a new label
      Botan::PKCS11::secure_string new_label = { 'B', 'o', 't', 'a', 'n' };
      data_obj.set_attribute_value( Botan::PKCS11::AttributeType::Label, new_label );

      // copy the object
      Botan::PKCS11::AttributeContainer copy_attributes;
      copy_attributes.add_string( Botan::PKCS11::AttributeType::Label, "copied object" );
      Botan::PKCS11::ObjectHandle copied_obj_handle = data_obj.copy( copy_attributes );

      // search for an object
      Botan::PKCS11::AttributeContainer search_template;
      search_template.add_string( Botan::PKCS11::AttributeType::Label, "Botan" );
      auto found_objs =
         Botan::PKCS11::Object::search<Botan::PKCS11::Object>( session, search_template.attributes() );

      // destroy the object
      data_obj.destroy();

RSA
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

PKCS#11 RSA support is implemented in ``<botan/p11_rsa.h>``.

.. rubric:: RSA Public Keys

PKCS#11 RSA public keys are provided by the class :cpp:class:`PKCS11_RSA_PublicKey`. This class
inherits from :cpp:class:`RSA_PublicKey` and :cpp:class:`Object`. Furthermore there are two property classes defined
to generate and import RSA public keys analogous to the other property classes described
before: :cpp:class:`RSA_PublicKeyGenerationProperties` and :cpp:class:`RSA_PublicKeyImportProperties`.

.. cpp:class:: PKCS11_RSA_PublicKey : public RSA_PublicKey, public Object

   .. cpp:function:: PKCS11_RSA_PublicKey(Session& session, ObjectHandle handle)

      Existing PKCS#11 RSA public keys can be used by providing an :cpp:type:`ObjectHandle` to the
      constructor.

   .. cpp:function:: PKCS11_RSA_PublicKey(Session& session, const RSA_PublicKeyImportProperties& pubkey_props)

      This constructor can be used to import an existing RSA public key with the :cpp:class:`RSA_PublicKeyImportProperties`
      passed in ``pubkey_props`` to the token.

.. rubric:: RSA Private Keys

The support for PKCS#11 RSA private keys is implemented in a similar way. There are two property
classes: :cpp:class:`RSA_PrivateKeyGenerationProperties` and :cpp:class:`RSA_PrivateKeyImportProperties`. The :cpp:class:`PKCS11_RSA_PrivateKey`
class implements the actual support for PKCS#11 RSA private keys. This class inherits from :cpp:class:`Private_Key`,
:cpp:class:`RSA_PublicKey` and :cpp:class:`Object`. In contrast to the public key class there is a third constructor
to generate private keys directly on the token or in the session and one method to export private keys.

.. cpp:class:: PKCS11_RSA_PrivateKey : public Private_Key, public RSA_PublicKey, public Object

   .. cpp:function:: PKCS11_RSA_PrivateKey(Session& session, ObjectHandle handle)

      Existing PKCS#11 RSA private keys can be used by providing an :cpp:type:`ObjectHandle` to the
      constructor.

   .. cpp:function:: PKCS11_RSA_PrivateKey(Session& session, const RSA_PrivateKeyImportProperties& priv_key_props)

      This constructor can be used to import an existing RSA private key with the :cpp:class:`RSA_PrivateKeyImportProperties`
      passed in ``priv_key_props`` to the token.

   .. cpp:function:: PKCS11_RSA_PrivateKey(Session& session, uint32_t bits, const RSA_PrivateKeyGenerationProperties& priv_key_props)

      Generates a new PKCS#11 RSA private key with bit length provided in ``bits`` and the :cpp:class:`RSA_PrivateKeyGenerationProperties`
      passed in ``priv_key_props``.

   .. cpp:function:: RSA_PrivateKey export_key() const

      Returns the exported :cpp:class:`RSA_PrivateKey`.

PKCS#11 RSA key pairs can be generated with the following free function:

   .. cpp:function:: PKCS11_RSA_KeyPair PKCS11::generate_rsa_keypair(Session& session, const RSA_PublicKeyGenerationProperties& pub_props, const RSA_PrivateKeyGenerationProperties& priv_props)

----------

Code example:

   .. code-block:: cpp

      Botan::PKCS11::secure_string pin = { '1', '2', '3', '4', '5', '6' };
      session.login( Botan::PKCS11::UserType::User, pin );

      /************ import RSA private key *************/

      // create private key in software
      Botan::AutoSeeded_RNG rng;
      Botan::RSA_PrivateKey priv_key_sw( rng, 2048 );

      // set the private key import properties
      Botan::PKCS11::RSA_PrivateKeyImportProperties
         priv_import_props( priv_key_sw.get_n(), priv_key_sw.get_d() );

      priv_import_props.set_pub_exponent( priv_key_sw.get_e() );
      priv_import_props.set_prime_1( priv_key_sw.get_p() );
      priv_import_props.set_prime_2( priv_key_sw.get_q() );
      priv_import_props.set_coefficient( priv_key_sw.get_c() );
      priv_import_props.set_exponent_1( priv_key_sw.get_d1() );
      priv_import_props.set_exponent_2( priv_key_sw.get_d2() );

      priv_import_props.set_token( true );
      priv_import_props.set_private( true );
      priv_import_props.set_decrypt( true );
      priv_import_props.set_sign( true );

      // import
      Botan::PKCS11::PKCS11_RSA_PrivateKey priv_key( session, priv_import_props );

      /************ export PKCS#11 RSA private key *************/
      Botan::RSA_PrivateKey exported = priv_key.export_key();

      /************ import RSA public key *************/

      // set the public key import properties
      Botan::PKCS11::RSA_PublicKeyImportProperties pub_import_props( priv_key.get_n(), priv_key.get_e() );
      pub_import_props.set_token( true );
      pub_import_props.set_encrypt( true );
      pub_import_props.set_private( false );

      // import
      Botan::PKCS11::PKCS11_RSA_PublicKey public_key( session, pub_import_props );

      /************ generate RSA private key *************/

      Botan::PKCS11::RSA_PrivateKeyGenerationProperties priv_generate_props;
      priv_generate_props.set_token( true );
      priv_generate_props.set_private( true );
      priv_generate_props.set_sign( true );
      priv_generate_props.set_decrypt( true );
      priv_generate_props.set_label( "BOTAN_TEST_RSA_PRIV_KEY" );

      Botan::PKCS11::PKCS11_RSA_PrivateKey private_key2( session, 2048, priv_generate_props );

      /************ generate RSA key pair *************/

      Botan::PKCS11::RSA_PublicKeyGenerationProperties pub_generate_props( 2048UL );
      pub_generate_props.set_pub_exponent();
      pub_generate_props.set_label( "BOTAN_TEST_RSA_PUB_KEY" );
      pub_generate_props.set_token( true );
      pub_generate_props.set_encrypt( true );
      pub_generate_props.set_verify( true );
      pub_generate_props.set_private( false );

      Botan::PKCS11::PKCS11_RSA_KeyPair rsa_keypair =
         Botan::PKCS11::generate_rsa_keypair( session, pub_generate_props, priv_generate_props );

      /************ RSA encrypt *************/

      Botan::secure_vector<uint8_t> plaintext = { 0x00, 0x01, 0x02, 0x03 };
      Botan::PK_Encryptor_EME encryptor( rsa_keypair.first, rng, "Raw" );
      auto ciphertext = encryptor.encrypt( plaintext, rng );

      /************ RSA decrypt *************/

      Botan::PK_Decryptor_EME decryptor( rsa_keypair.second, rng, "Raw" );
      plaintext = decryptor.decrypt( ciphertext );

      /************ RSA sign *************/

      Botan::PK_Signer signer( rsa_keypair.second, rng, "EMSA4(SHA-256)", Botan::IEEE_1363 );
      auto signature = signer.sign_message( plaintext, rng );

      /************ RSA verify *************/

      Botan::PK_Verifier verifier( rsa_keypair.first, "EMSA4(SHA-256)", Botan::IEEE_1363 );
      auto ok = verifier.verify_message( plaintext, signature );

ECDSA
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

PKCS#11 ECDSA support is implemented in ``<botan/p11_ecdsa.h>``.

.. rubric:: ECDSA Public Keys

PKCS#11 ECDSA public keys are provided by the class :cpp:class:`PKCS11_ECDSA_PublicKey`. This class
inherits from :cpp:class:`PKCS11_EC_PublicKey` and :cpp:class:`ECDSA_PublicKey`. The necessary property classes
are defined in ``<botan/p11_ecc_key.h>``. For public keys there are :cpp:class:`EC_PublicKeyGenerationProperties`
and :cpp:class:`EC_PublicKeyImportProperties`.

.. cpp:class:: PKCS11_ECDSA_PublicKey : public PKCS11_EC_PublicKey, public virtual ECDSA_PublicKey

   .. cpp:function:: PKCS11_ECDSA_PublicKey(Session& session, ObjectHandle handle)

      Existing PKCS#11 ECDSA private keys can be used by providing an :cpp:type:`ObjectHandle` to the
      constructor.

   .. cpp:function:: PKCS11_ECDSA_PublicKey(Session& session, const EC_PublicKeyImportProperties& props)

      This constructor can be used to import an existing ECDSA public key with the :cpp:class:`EC_PublicKeyImportProperties`
      passed in ``props`` to the token.

   .. cpp:function:: ECDSA_PublicKey PKCS11_ECDSA_PublicKey::export_key() const

      Returns the exported :cpp:class:`ECDSA_PublicKey`.

.. rubric:: ECDSA Private Keys

The class :cpp:class:`PKCS11_ECDSA_PrivateKey` inherits from :cpp:class:`PKCS11_EC_PrivateKey` and implements support
for PKCS#11 ECDSA private keys. There are two property classes for key generation
and import: :cpp:class:`EC_PrivateKeyGenerationProperties` and :cpp:class:`EC_PrivateKeyImportProperties`.

.. cpp:class:: PKCS11_ECDSA_PrivateKey : public PKCS11_EC_PrivateKey

   .. cpp:function:: PKCS11_ECDSA_PrivateKey(Session& session, ObjectHandle handle)

      Existing PKCS#11 ECDSA private keys can be used by providing an :cpp:type:`ObjectHandle` to the
      constructor.

   .. cpp:function:: PKCS11_ECDSA_PrivateKey(Session& session, const EC_PrivateKeyImportProperties& props)

      This constructor can be used to import an existing ECDSA private key with the :cpp:class:`EC_PrivateKeyImportProperties`
      passed in ``props`` to the token.

   .. cpp:function:: PKCS11_ECDSA_PrivateKey(Session& session, const std::vector<uint8_t>& ec_params, const EC_PrivateKeyGenerationProperties& props)

      This constructor can be used to generate a new ECDSA private key with the :cpp:class:`EC_PrivateKeyGenerationProperties`
      passed in ``props`` on the token. The ``ec_params`` parameter is the DER-encoding of an
      ANSI X9.62 Parameters value.

   .. cpp:function:: ECDSA_PrivateKey export_key() const

      Returns the exported :cpp:class:`ECDSA_PrivateKey`.

PKCS#11 ECDSA key pairs can be generated with the following free function:

   .. cpp:function:: PKCS11_ECDSA_KeyPair PKCS11::generate_ecdsa_keypair(Session& session, const EC_PublicKeyGenerationProperties& pub_props, const EC_PrivateKeyGenerationProperties& priv_props)

----------

Code example:

   .. code-block:: cpp

      Botan::PKCS11::secure_string pin = { '1', '2', '3', '4', '5', '6' };
      session.login( Botan::PKCS11::UserType::User, pin );

      /************ import ECDSA private key *************/

      // create private key in software
      Botan::AutoSeeded_RNG rng;

      Botan::ECDSA_PrivateKey priv_key_sw( rng, Botan::EC_Group( "secp256r1" ) );
      priv_key_sw.set_parameter_encoding( Botan::EC_Group_Encoding::EC_DOMPAR_ENC_OID );

      // set the private key import properties
      Botan::PKCS11::EC_PrivateKeyImportProperties priv_import_props(
         priv_key_sw.DER_domain(), priv_key_sw.private_value() );

      priv_import_props.set_token( true );
      priv_import_props.set_private( true );
      priv_import_props.set_sign( true );
      priv_import_props.set_extractable( true );

      // label
      std::string label = "test ECDSA key";
      priv_import_props.set_label( label );

      // import to card
      Botan::PKCS11::PKCS11_ECDSA_PrivateKey priv_key( session, priv_import_props );

      /************ export PKCS#11 ECDSA private key *************/
      Botan::ECDSA_PrivateKey priv_exported = priv_key.export_key();

      /************ import ECDSA public key *************/

      // import to card
      Botan::PKCS11::EC_PublicKeyImportProperties pub_import_props( priv_key_sw.DER_domain(),
         Botan::DER_Encoder().encode( EC2OSP( priv_key_sw.public_point(), Botan::PointGFp::UNCOMPRESSED ),
         Botan::OCTET_STRING ).get_contents_unlocked() );

      pub_import_props.set_token( true );
      pub_import_props.set_verify( true );
      pub_import_props.set_private( false );

      // label
      label = "test ECDSA pub key";
      pub_import_props.set_label( label );

      Botan::PKCS11::PKCS11_ECDSA_PublicKey public_key( session, pub_import_props );

      /************ export PKCS#11 ECDSA public key *************/
      Botan::ECDSA_PublicKey pub_exported = public_key.export_key();

      /************ generate PKCS#11 ECDSA private key *************/
      Botan::PKCS11::EC_PrivateKeyGenerationProperties priv_generate_props;
      priv_generate_props.set_token( true );
      priv_generate_props.set_private( true );
      priv_generate_props.set_sign( true );

      Botan::PKCS11::PKCS11_ECDSA_PrivateKey pk( session,
         Botan::EC_Group( "secp256r1" ).DER_encode( Botan::EC_Group_Encoding::EC_DOMPAR_ENC_OID ),
         priv_generate_props );

      /************ generate PKCS#11 ECDSA key pair *************/

      Botan::PKCS11::EC_PublicKeyGenerationProperties pub_generate_props(
         Botan::EC_Group( "secp256r1" ).DER_encode(Botan::EC_Group_Encoding::EC_DOMPAR_ENC_OID ) );

      pub_generate_props.set_label( "BOTAN_TEST_ECDSA_PUB_KEY" );
      pub_generate_props.set_token( true );
      pub_generate_props.set_verify( true );
      pub_generate_props.set_private( false );
      pub_generate_props.set_modifiable( true );

      Botan::PKCS11::PKCS11_ECDSA_KeyPair key_pair = Botan::PKCS11::generate_ecdsa_keypair( session,
         pub_generate_props, priv_generate_props );

      /************ PKCS#11 ECDSA sign and verify *************/

      std::vector<uint8_t> plaintext( 20, 0x01 );

      Botan::PK_Signer signer( key_pair.second, rng, "Raw", Botan::IEEE_1363, "pkcs11" );
      auto signature = signer.sign_message( plaintext, rng );

      Botan::PK_Verifier token_verifier( key_pair.first, "Raw", Botan::IEEE_1363, "pkcs11" );
      bool ecdsa_ok = token_verifier.verify_message( plaintext, signature );

ECDH
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

PKCS#11 ECDH support is implemented in ``<botan/p11_ecdh.h>``.

.. rubric:: ECDH Public Keys

PKCS#11 ECDH public keys are provided by the class :cpp:class:`PKCS11_ECDH_PublicKey`. This class
inherits from :cpp:class:`PKCS11_EC_PublicKey`. The necessary property classes
are defined in ``<botan/p11_ecc_key.h>``. For public keys there are :cpp:class:`EC_PublicKeyGenerationProperties`
and :cpp:class:`EC_PublicKeyImportProperties`.

.. cpp:class:: PKCS11_ECDH_PublicKey : public PKCS11_EC_PublicKey

   .. cpp:function:: PKCS11_ECDH_PublicKey(Session& session, ObjectHandle handle)

      Existing PKCS#11 ECDH private keys can be used by providing an :cpp:type:`ObjectHandle` to the
      constructor.

   .. cpp:function:: PKCS11_ECDH_PublicKey(Session& session, const EC_PublicKeyImportProperties& props)

      This constructor can be used to import an existing ECDH public key with the :cpp:class:`EC_PublicKeyImportProperties`
      passed in ``props`` to the token.

   .. cpp:function:: ECDH_PublicKey export_key() const

      Returns the exported :cpp:class:`ECDH_PublicKey`.

.. rubric:: ECDH Private Keys

The class :cpp:class:`PKCS11_ECDH_PrivateKey` inherits from :cpp:class:`PKCS11_EC_PrivateKey` and :cpp:class:`PK_Key_Agreement_Key`
and implements support for PKCS#11 ECDH private keys. There are two
property classes. One for key generation and one for import: :cpp:class:`EC_PrivateKeyGenerationProperties` and
:cpp:class:`EC_PrivateKeyImportProperties`.

.. cpp:class:: PKCS11_ECDH_PrivateKey : public virtual PKCS11_EC_PrivateKey, public virtual PK_Key_Agreement_Key

   .. cpp:function:: PKCS11_ECDH_PrivateKey(Session& session, ObjectHandle handle)

      Existing PKCS#11 ECDH private keys can be used by providing an :cpp:type:`ObjectHandle` to the
      constructor.

   .. cpp:function:: PKCS11_ECDH_PrivateKey(Session& session, const EC_PrivateKeyImportProperties& props)

      This constructor can be used to import an existing ECDH private key with the :cpp:class:`EC_PrivateKeyImportProperties`
      passed in ``props`` to the token.

   .. cpp:function:: PKCS11_ECDH_PrivateKey(Session& session, const std::vector<uint8_t>& ec_params, const EC_PrivateKeyGenerationProperties& props)

      This constructor can be used to generate a new ECDH private key with the :cpp:class:`EC_PrivateKeyGenerationProperties`
      passed in ``props`` on the token. The ``ec_params`` parameter is the DER-encoding of an
      ANSI X9.62 Parameters value.

   .. cpp:function:: ECDH_PrivateKey export_key() const

      Returns the exported :cpp:class:`ECDH_PrivateKey`.

PKCS#11 ECDH key pairs can be generated with the following free function:

.. cpp:function:: PKCS11_ECDH_KeyPair PKCS11::generate_ecdh_keypair(Session& session, const EC_PublicKeyGenerationProperties& pub_props, const EC_PrivateKeyGenerationProperties& priv_props)

----------

Code example:

   .. code-block:: cpp

      Botan::PKCS11::secure_string pin = { '1', '2', '3', '4', '5', '6' };
      session.login( Botan::PKCS11::UserType::User, pin );

      /************ import ECDH private key *************/

      Botan::AutoSeeded_RNG rng;

      // create private key in software
      Botan::ECDH_PrivateKey priv_key_sw( rng, Botan::EC_Group( "secp256r1" ) );
      priv_key_sw.set_parameter_encoding( Botan::EC_Group_Encoding::EC_DOMPAR_ENC_OID );

      // set import properties
      Botan::PKCS11::EC_PrivateKeyImportProperties priv_import_props(
         priv_key_sw.DER_domain(), priv_key_sw.private_value() );

      priv_import_props.set_token( true );
      priv_import_props.set_private( true );
      priv_import_props.set_derive( true );
      priv_import_props.set_extractable( true );

      // label
      std::string label = "test ECDH key";
      priv_import_props.set_label( label );

      // import to card
      Botan::PKCS11::PKCS11_ECDH_PrivateKey priv_key( session, priv_import_props );

      /************ export ECDH private key *************/
      Botan::ECDH_PrivateKey exported = priv_key.export_key();

      /************ import ECDH public key *************/

      // set import properties
      Botan::PKCS11::EC_PublicKeyImportProperties pub_import_props( priv_key_sw.DER_domain(),
         Botan::DER_Encoder().encode( EC2OSP( priv_key_sw.public_point(), Botan::PointGFp::UNCOMPRESSED ),
         Botan::OCTET_STRING ).get_contents_unlocked() );

      pub_import_props.set_token( true );
      pub_import_props.set_private( false );
      pub_import_props.set_derive( true );

      // label
      label = "test ECDH pub key";
      pub_import_props.set_label( label );

      // import
      Botan::PKCS11::PKCS11_ECDH_PublicKey pub_key( session, pub_import_props );

      /************ export ECDH private key *************/
      Botan::ECDH_PublicKey exported_pub = pub_key.export_key();

      /************ generate ECDH private key *************/

      Botan::PKCS11::EC_PrivateKeyGenerationProperties priv_generate_props;
      priv_generate_props.set_token( true );
      priv_generate_props.set_private( true );
      priv_generate_props.set_derive( true );

      Botan::PKCS11::PKCS11_ECDH_PrivateKey priv_key2( session,
         Botan::EC_Group( "secp256r1" ).DER_encode( Botan::EC_Group_Encoding::EC_DOMPAR_ENC_OID ),
         priv_generate_props );

      /************ generate ECDH key pair *************/

      Botan::PKCS11::EC_PublicKeyGenerationProperties pub_generate_props(
         Botan::EC_Group( "secp256r1" ).DER_encode( Botan::EC_Group_Encoding::EC_DOMPAR_ENC_OID ) );

      pub_generate_props.set_label( label + "_PUB_KEY" );
      pub_generate_props.set_token( true );
      pub_generate_props.set_derive( true );
      pub_generate_props.set_private( false );
      pub_generate_props.set_modifiable( true );

      Botan::PKCS11::PKCS11_ECDH_KeyPair key_pair = Botan::PKCS11::generate_ecdh_keypair(
         session, pub_generate_props, priv_generate_props );

      /************ ECDH derive *************/

      Botan::PKCS11::PKCS11_ECDH_KeyPair key_pair_other = Botan::PKCS11::generate_ecdh_keypair(
         session, pub_generate_props, priv_generate_props );

      Botan::PK_Key_Agreement ka( key_pair.second, rng, "Raw", "pkcs11" );
      Botan::PK_Key_Agreement kb( key_pair_other.second, rng, "Raw", "pkcs11" );

      Botan::SymmetricKey alice_key = ka.derive_key( 32,
         Botan::unlock( Botan::EC2OSP( key_pair_other.first.public_point(),
         Botan::PointGFp::UNCOMPRESSED ) ) );

      Botan::SymmetricKey bob_key = kb.derive_key( 32,
         Botan::unlock( Botan::EC2OSP( key_pair.first.public_point(),
         Botan::PointGFp::UNCOMPRESSED ) ) );

      bool eq = alice_key == bob_key;

RNG
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The PKCS#11 RNG is defined in ``<botan/p11_randomgenerator.h>``. The class :cpp:class:`PKCS11_RNG`
implements the :cpp:class:`Hardware_RNG` interface.

.. cpp:class:: PKCS11_RNG : public Hardware_RNG

   .. cpp:function:: PKCS11_RNG(Session& session)

      A PKCS#11 :cpp:class:`Session` must be passed to instantiate a ``PKCS11_RNG``.

   .. cpp:function:: void randomize(uint8_t output[], std::size_t length) override

      Calls :cpp:func:`C_GenerateRandom` to generate random data.

   .. cpp:function:: void add_entropy(const uint8_t in[], std::size_t length) override

      Calls :cpp:func:`C_SeedRandom` to add entropy to the random generation function of the token/middleware.

----------

Code example:

   .. code-block:: cpp

      Botan::PKCS11::PKCS11_RNG p11_rng( session );

      /************ generate random data *************/
      std::vector<uint8_t> random( 20 );
      p11_rng.randomize( random.data(), random.size() );

      /************ add entropy *************/
      Botan::AutoSeeded_RNG auto_rng;
      auto auto_rng_random = auto_rng.random_vec( 20 );
      p11_rng.add_entropy( auto_rng_random.data(), auto_rng_random.size() );

      /************ use PKCS#11 RNG to seed HMAC_DRBG *************/
      Botan::HMAC_DRBG drbg( Botan::MessageAuthenticationCode::create( "HMAC(SHA-512)" ), p11_rng );
      drbg.randomize( random.data(), random.size() );

Token Management Functions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The header file ``<botan/p11.h>`` also defines some free functions for token management:

   .. cpp:function:: void initialize_token(Slot& slot, const std::string& label, const secure_string& so_pin, const secure_string& pin)

      Initializes a token by passing a :cpp:class:`Slot`, a ``label`` and the ``so_pin`` of the security officer.

   .. cpp:function:: void change_pin(Slot& slot, const secure_string& old_pin, const secure_string& new_pin)

      Change PIN with ``old_pin`` to ``new_pin``.

   .. cpp:function:: void change_so_pin(Slot& slot, const secure_string& old_so_pin, const secure_string& new_so_pin)

      Change SO_PIN with ``old_so_pin`` to new ``new_so_pin``.

   .. cpp:function:: void set_pin(Slot& slot, const secure_string& so_pin, const secure_string& pin)

      Sets user ``pin`` with ``so_pin``.

----------

Code example:

   .. code-block:: cpp

      /************ set pin *************/

      Botan::PKCS11::Module module( Middleware_path );

      // only slots with connected token
      std::vector<Botan::PKCS11::SlotId> slots = Botan::PKCS11::Slot::get_available_slots( module, true );

      // use first slot
      Botan::PKCS11::Slot slot( module, slots.at( 0 ) );

      Botan::PKCS11::secure_string so_pin = { '1', '2', '3', '4', '5', '6', '7', '8' };
      Botan::PKCS11::secure_string pin = { '1', '2', '3', '4', '5', '6' };
      Botan::PKCS11::secure_string test_pin = { '6', '5', '4', '3', '2', '1' };

      // set pin
      Botan::PKCS11::set_pin( slot, so_pin, test_pin );

      // change back
      Botan::PKCS11::set_pin( slot, so_pin, pin );

      /************ initialize *************/
      Botan::PKCS11::initialize_token( slot, "Botan handbook example", so_pin, pin );

      /************ change pin *************/
      Botan::PKCS11::change_pin( slot, pin, test_pin );

      // change back
      Botan::PKCS11::change_pin( slot, test_pin, pin );

      /************ change security officer pin *************/
      Botan::PKCS11::change_so_pin( slot, so_pin, test_pin );

      // change back
      Botan::PKCS11::change_so_pin( slot, test_pin, so_pin );

X.509
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The header file ``<botan/p11_x509.h>`` defines the property class :cpp:class:`X509_CertificateProperties`
and the class :cpp:class:`PKCS11_X509_Certificate`.

.. cpp:class:: PKCS11_X509_Certificate : public Object, public X509_Certificate

   .. cpp:function:: PKCS11_X509_Certificate(Session& session, ObjectHandle handle)

      Allows to use existing certificates on the token by passing a valid :cpp:type:`ObjectHandle`.

   .. cpp:function:: PKCS11_X509_Certificate(Session& session, const X509_CertificateProperties& props)

      Allows to import an existing X.509 certificate to the token with the :cpp:class:`X509_CertificateProperties`
      passed in ``props``.

----------

Code example:

   .. code-block:: cpp

      // load existing certificate
      Botan::X509_Certificate root( "test.crt" );

      // set props
      Botan::PKCS11::X509_CertificateProperties props(
         Botan::DER_Encoder().encode( root.subject_dn() ).get_contents_unlocked(), root.BER_encode() );

      props.set_label( "Botan PKCS#11 test certificate" );
      props.set_private( false );
      props.set_token( true );

      // import
      Botan::PKCS11::PKCS11_X509_Certificate pkcs11_cert( session, props );

      // load by handle
      Botan::PKCS11::PKCS11_X509_Certificate pkcs11_cert2( session, pkcs11_cert.handle() );

Tests
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The PKCS#11 tests are not executed automatically because the depend on an external
PKCS#11 module/middleware. The test tool has to be executed with ``--pkcs11-lib=``
followed with the path of the PKCS#11 module and a second argument which controls the
PKCS#11 tests that are executed. Passing ``pkcs11`` will execute all PKCS#11 tests but it's
also possible to execute only a subset with the following arguments:

- pkcs11-ecdh
- pkcs11-ecdsa
- pkcs11-lowlevel
- pkcs11-manage
- pkcs11-module
- pkcs11-object
- pkcs11-rng
- pkcs11-rsa
- pkcs11-session
- pkcs11-slot
- pkcs11-x509

The following PIN and SO-PIN/PUK values are used in tests:

- PIN 123456
- SO-PIN/PUK 12345678

 .. warning::

   Unlike the CardOS (4.4, 5.0, 5.3), the aforementioned SO-PIN/PUK is
   inappropriate for Gemalto (IDPrime MD 3840) cards, as it must be a byte array
   of length 24. For this reason some of the tests for Gemalto card involving
   SO-PIN will fail.  You run into a risk of exceding login attempts and as a
   result locking your card!  Currently, specifying pin via command-line option
   is not implemented, and therefore the desired PIN must be modified in the
   header src/tests/test_pkcs11.h:

   .. code-block:: cpp

      // SO PIN is expected to be set to "12345678" prior to running the tests
      const std::string SO_PIN = "12345678";
      const auto SO_PIN_SECVEC = Botan::PKCS11::secure_string(SO_PIN.begin(), SO_PIN.end());


Tested/Supported Smartcards
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

You are very welcome to contribute your own test results for other testing environments or other cards.


Test results

+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
|  Smartcard                          | Status                                    | OS                                                | Midleware                                         |   Botan                                           | Errors                                            |
+=====================================+===========================================+===================================================+===================================================+===================================================+===================================================+
| CardOS 4.4                          | mostly works                              | Windows 10, 64-bit, version 1709                  | API Version 5.4.9.77 (Cryptoki v2.11)             |  2.4.0, Cryptoki v2.40                            | [50]_                                             |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
| CardOS 5.0                          | mostly works                              | Windows 10, 64-bit, version 1709                  | API Version 5.4.9.77 (Cryptoki v2.11)             |  2.4.0, Cryptoki v2.40                            | [51]_                                             |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
| CardOS 5.3                          | mostly works                              | Windows 10, 64-bit, version 1709                  | API Version 5.4.9.77 (Cryptoki v2.11)             |  2.4.0, Cryptoki v2.40                            | [52]_                                             |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
| CardOS 5.3                          | mostly works                              | Windows 10, 64-bit, version 1903                  | API Version 5.5.1 (Cryptoki v2.11)                |  2.12.0 unreleased, Cryptoki v2.40                | [53]_                                             |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
| Gemalto IDPrime MD 3840             | mostly works                              | Windows 10, 64-bit, version 1709                  | IDGo 800, v1.2.4 (Cryptoki v2.20)                 |  2.4.0, Cryptoki v2.40                            | [54]_                                             |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
| SoftHSM 2.3.0 (OpenSSL 1.0.2g)      | works                                     | Windows 10, 64-bit, version 1709                  | Cryptoki v2.40                                    |  2.4.0, Cryptoki v2.40                            |                                                   |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+
| SoftHSM 2.5.0 (OpenSSL 1.1.1)       | works                                     | Windows 10, 64-bit, version 1803                  | Cryptoki v2.40                                    |  2.11.0, Cryptoki v2.40                           |                                                   |
+-------------------------------------+-------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+---------------------------------------------------+

.. [50] Failing operations for CardOS 4.4:

 - object_copy [20]_

 - rsa_privkey_export [21]_
 - rsa_generate_private_key [22]_
 - rsa_sign_verify [23]_

 - ecdh_privkey_import [3]_
 - ecdh_privkey_export [2]_
 - ecdh_pubkey_import [4]_
 - ecdh_pubkey_export [4]_
 - ecdh_generate_private_key [3]_
 - ecdh_generate_keypair [3]_
 - ecdh_derive [3]_

 - ecdsa_privkey_import [3]_
 - ecdsa_privkey_export [2]_
 - ecdsa_pubkey_import [4]_
 - ecdsa_pubkey_export [4]_
 - ecdsa_generate_private_key  [3]_
 - ecdsa_generate_keypair  [3]_
 - ecdsa_sign_verify  [3]_

 - rng_add_entropy [5]_


.. [51] Failing operations for CardOS 5.0

 - object_copy [20]_

 - rsa_privkey_export [21]_
 - rsa_generate_private_key [22]_
 - rsa_sign_verify [23]_

 - ecdh_privkey_export [2]_
 - ecdh_pubkey_import [4]_
 - ecdh_generate_private_key [32]_
 - ecdh_generate_keypair [3]_
 - ecdh_derive [33]_

 - ecdsa_privkey_export [2]_
 - ecdsa_generate_private_key  [30]_
 - ecdsa_generate_keypair  [30]_
 - ecdsa_sign_verify  [30]_

 - rng_add_entropy [5]_

.. [52] Failing operations for CardOS 5.3

 - object_copy [20]_

 - rsa_privkey_export [21]_
 - rsa_generate_private_key [22]_
 - rsa_sign_verify [23]_

 - ecdh_privkey_export [2]_
 - ecdh_pubkey_import [6]_
 - ecdh_pubkey_export [6]_
 - ecdh_generate_private_key [30]_
 - ecdh_generate_keypair [31]_
 - ecdh_derive [30]_

 - ecdsa_privkey_export [2]_
 - ecdsa_pubkey_import [6]_
 - ecdsa_pubkey_export [6]_
 - ecdsa_generate_private_key  [31]_
 - ecdsa_generate_keypair  [31]_
 - ecdsa_sign_verify  [34]_

 - rng_add_entropy [5]_

.. [53] Failing operations for CardOS 5.3 (middelware 5.5.1)

 - ecdh_privkey_export [2]_
 - ecdh_generate_private_key [35]_
 - ecdsa_privkey_export [2]_
 - ecdsa_generate_private_key [36]_
 - c_copy_object [4]_

 - object_copy [4]_

 - rng_add_entropy [5]_

 - rsa_sign_verify [3]_
 - rsa_privkey_export [2]_
 - rsa_generate_private_key [9]_

.. [54] Failing operations for Gemalto IDPrime MD 3840

 - session_login_logout [2]_
 - session_info [2]_
 - set_pin [2]_
 - initialize [2]_
 - change_so_pin [2]_

 - object_copy [20]_

 - rsa_generate_private_key [7]_
 - rsa_encrypt_decrypt [8]_
 - rsa_sign_verify [2]_

 - rng_add_entropy [5]_

Error descriptions

.. [2] CKR_ARGUMENTS_BAD (0x7=7)
.. [3] CKR_MECHANISM_INVALID (0x70=112)
.. [4] CKR_FUNCTION_NOT_SUPPORTED (0x54=84)
.. [5] CKR_RANDOM_SEED_NOT_SUPPORTED (0x120=288)
.. [6] CKM_X9_42_DH_KEY_PAIR_GEN | CKR_DEVICE_ERROR (0x30=48)
.. [7] CKR_TEMPLATE_INCONSISTENT (0xD1=209)
.. [8] CKR_ENCRYPTED_DATA_INVALID | CKM_SHA256_RSA_PKCS (0x40=64)
.. [9] CKR_TEMPLATE_INCOMPLETE (0xD0=208)

.. [20] Test fails due to unsupported copy function (CKR_FUNCTION_NOT_SUPPORTED)
.. [21] Generating private key for extraction with property extractable fails (CKR_ARGUMENTS_BAD)
.. [22] Generate rsa private key operation fails (CKR_TEMPLATE_INCOMPLETE)
.. [23] Raw RSA sign-verify fails (CKR_MECHANISM_INVALID)

.. [30] Invalid argument Decoding error: BER: Value truncated
.. [31] Invalid argument Decoding error: BER: Length field is to large
.. [32] Invalid argument OS2ECP: Unknown format type 155
.. [33] Invalid argument OS2ECP: Unknown format type 92
.. [34] Invalid argument OS2ECP: Unknown format type 57
.. [35] Invalid argument OS2ECP: Unknown format type 82
.. [36] Invalid argument OS2ECP: Unknown format type 102