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
|
"""
Types for high level PKCS#11 wrapper.
This module provides stubs that are overrideen in pkcs11._pkcs11.
"""
from threading import RLock
from binascii import hexlify
from cached_property import cached_property
from .constants import (
Attribute,
MechanismFlag,
ObjectClass,
SlotFlag,
TokenFlag,
UserType,
)
from .mechanisms import KeyType, Mechanism
from .exceptions import (
ArgumentsBad,
AttributeTypeInvalid,
NoSuchKey,
MultipleObjectsReturned,
SignatureInvalid,
SignatureLenRange,
)
PROTECTED_AUTH = object()
"""Indicate the pin should be supplied via an external mechanism (e.g. pin pad)"""
def _CK_UTF8CHAR_to_str(data):
"""Convert CK_UTF8CHAR to string."""
return data.decode('utf-8').rstrip()
def _CK_VERSION_to_tuple(data):
"""Convert CK_VERSION to tuple."""
return (data['major'], data['minor'])
def _CK_MECHANISM_TYPE_to_enum(mechanism):
"""Convert CK_MECHANISM_TYPE to enum or be okay."""
try:
return Mechanism(mechanism)
except ValueError:
return mechanism
class MechanismInfo:
"""
Information about a mechanism.
See :meth:`pkcs11.Slot.get_mechanism_info`.
"""
def __init__(self,
slot,
mechanism,
ulMinKeySize=None,
ulMaxKeySize=None,
flags=None,
**kwargs):
self.slot = slot
""":class:`pkcs11.Slot` this information is for."""
self.mechanism = mechanism
""":class:`pkcs11.mechanisms.Mechanism` this information is for."""
self.min_key_length = ulMinKeySize
"""Minimum key length in bits (:class:`int`)."""
self.max_key_length = ulMaxKeySize
"""Maximum key length in bits (:class:`int`)."""
self.flags = MechanismFlag(flags)
"""Mechanism capabilities (:class:`pkcs11.constants.MechanismFlag`)."""
def __str__(self):
return '\n'.join((
"Supported key lengths: [%s, %s]" % (self.min_key_length,
self.max_key_length),
"Flags: %s" % self.flags,
))
def __repr__(self):
return '<{klass} (mechanism={mechanism}, flags={flags})>'.format(
klass=type(self).__name__,
mechanism=str(self.mechanism),
flags=str(self.flags))
class Slot:
"""
A PKCS#11 device slot.
This object represents a physical or software slot exposed by PKCS#11.
A slot has hardware capabilities, e.g. supported mechanisms and may has
a physical or software :class:`Token` installed.
"""
def __init__(self, lib, slot_id,
slotDescription=None,
manufacturerID=None,
hardwareVersion=None,
firmwareVersion=None,
flags=None,
**kwargs):
self._lib = lib # Hold a reference to the lib to prevent gc
self.slot_id = slot_id
"""Slot identifier (opaque)."""
self.slot_description = _CK_UTF8CHAR_to_str(slotDescription)
"""Slot name (:class:`str`)."""
self.manufacturer_id = _CK_UTF8CHAR_to_str(manufacturerID)
"""Slot/device manufacturer's name (:class:`str`)."""
self.hardware_version = _CK_VERSION_to_tuple(hardwareVersion)
"""Hardware version (:class:`tuple`)."""
self.firmware_version = _CK_VERSION_to_tuple(firmwareVersion)
"""Firmware version (:class:`tuple`)."""
self.flags = SlotFlag(flags)
"""Capabilities of this slot (:class:`SlotFlag`)."""
def get_token(self):
"""
Returns the token loaded into this slot.
:rtype: Token
"""
raise NotImplementedError()
def get_mechanisms(self):
"""
Returns the mechanisms supported by this device.
:rtype: set(Mechanism)
"""
raise NotImplementedError()
def get_mechanism_info(self, mechanism):
"""
Returns information about the mechanism.
:param Mechanism mechanism: mechanism to learn about
:rtype: MechanismInfo
"""
raise NotImplementedError()
def __eq__(self, other):
return self.slot_id == other.slot_id
def __str__(self):
return '\n'.join((
"Slot Description: %s" % self.slot_description,
"Manufacturer ID: %s" % self.manufacturer_id,
"Hardware Version: %s.%s" % self.hardware_version,
"Firmware Version: %s.%s" % self.firmware_version,
"Flags: %s" % self.flags,
))
def __repr__(self):
return '<{klass} (slotID={slot_id} flags={flags})>'.format(
klass=type(self).__name__,
slot_id=self.slot_id,
flags=str(self.flags))
class Token:
"""
A PKCS#11 token.
A token can be physically installed in a :class:`Slot`, or a software
token, depending on your PKCS#11 library.
"""
def __init__(self, slot,
label=None,
serialNumber=None,
model=None,
manufacturerID=None,
hardwareVersion=None,
firmwareVersion=None,
flags=None,
**kwargs):
self.slot = slot
"""The :class:`Slot` this token is installed in."""
self.label = _CK_UTF8CHAR_to_str(label)
"""Label of this token (:class:`str`)."""
self.serial = serialNumber.rstrip()
"""Serial number of this token (:class:`bytes`)."""
self.manufacturer_id = _CK_UTF8CHAR_to_str(manufacturerID)
"""Manufacturer ID."""
self.model = _CK_UTF8CHAR_to_str(model)
"""Model name."""
self.hardware_version = _CK_VERSION_to_tuple(hardwareVersion)
"""Hardware version (:class:`tuple`)."""
self.firmware_version = _CK_VERSION_to_tuple(firmwareVersion)
"""Firmware version (:class:`tuple`)."""
self.flags = TokenFlag(flags)
"""Capabilities of this token (:class:`pkcs11.flags.TokenFlag`)."""
def __eq__(self, other):
return self.slot == other.slot
def open(self, rw=False, user_pin=None, so_pin=None):
"""
Open a session on the token and optionally log in as a user or
security officer (pass one of `user_pin` or `so_pin`). Pass PROTECTED_AUTH to
indicate the pin should be supplied via an external mechanism (e.g. pin pad).
Can be used as a context manager or close with :meth:`Session.close`.
::
with token.open() as session:
print(session)
:param rw: True to create a read/write session.
:param bytes user_pin: Authenticate to this session as a user.
:param bytes so_pin: Authenticate to this session as a
security officer.
:rtype: Session
"""
raise NotImplementedError()
def __str__(self):
return self.label
def __repr__(self):
return "<{klass} (label='{label}' serial={serial} flags={flags})>"\
.format(klass=type(self).__name__,
label=self.label,
serial=self.serial,
flags=str(self.flags))
class Session:
"""
A PKCS#11 :class:`Token` session.
A session is required to do nearly all operations on a token including
encryption/signing/keygen etc.
Create a session using :meth:`Token.open`. Sessions can be used as a
context manager or closed with :meth:`close`.
"""
def __init__(self, token, handle, rw=False, user_type=UserType.NOBODY):
self.token = token
""":class:`Token` this session is on."""
self._handle = handle
# Big operation lock prevents other threads from entering/reentering
# operations. If the same thread enters the lock, they will get a
# Cryptoki warning
self._operation_lock = RLock()
self.rw = rw
"""True if this is a read/write session."""
self.user_type = user_type
"""User type for this session (:class:`pkcs11.constants.UserType`)."""
def __eq__(self, other):
return self.token == other.token and \
self._handle == other._handle
def __hash__(self):
return hash(self._handle)
def __enter__(self):
return self
def __exit__(self, type_, value, traceback):
self.close()
def close(self):
"""Close the session."""
raise NotImplementedError()
def get_key(self, object_class=None, key_type=None, label=None, id=None):
"""
Search for a key with any of `key_type`, `label` and/or `id`.
Returns a single key or throws :class:`pkcs11.exceptions.NoSuchKey` or
:class:`pkcs11.exceptions.MultipleObjectsReturned`.
This is a simplified version of :meth:`get_objects`, which allows
searching for any object.
:param ObjectClass object_class: Optional object class.
:param KeyType key_type: Optional key type.
:param str label: Optional key label.
:param bytes id: Optional key id.
:rtype: Key
"""
if object_class is None and \
key_type is None and \
label is None \
and id is None:
raise ArgumentsBad("Must specify at least one search parameter.")
attrs = {}
if object_class is not None:
attrs[Attribute.CLASS] = object_class
if key_type is not None:
attrs[Attribute.KEY_TYPE] = key_type
if label is not None:
attrs[Attribute.LABEL] = label
if id is not None:
attrs[Attribute.ID] = id
iterator = self.get_objects(attrs)
try:
try:
key = next(iterator)
except StopIteration:
raise NoSuchKey("No key matching %s" % attrs)
try:
next(iterator)
raise MultipleObjectsReturned("More than 1 key matches %s" %
attrs)
except StopIteration:
return key
finally:
# Force finalizing SearchIter rather than waiting for garbage
# collection, so that we release the operation lock.
iterator._finalize()
def get_objects(self, attrs=None):
"""
Search for objects matching `attrs`. Returns a generator.
::
for obj in session.get_objects({
Attribute.CLASS: ObjectClass.SECRET_KEY,
Attribute.LABEL: 'MY LABEL',
}):
print(obj)
This is the more generic version of :meth:`get_key`.
:param dict(Attribute,*) attrs: Attributes to search for.
:rtype: iter(Object)
"""
raise NotImplementedError()
def create_object(self, attrs):
"""
Create a new object on the :class:`Token`. This is a low-level
interface to create any type of object and can be used for importing
data onto the Token.
::
key = session.create_object({
pkcs11.Attribute.CLASS: pkcs11.ObjectClass.SECRET_KEY,
pkcs11.Attribute.KEY_TYPE: pkcs11.KeyType.AES,
pkcs11.Attribute.VALUE: b'SUPER SECRET KEY',
})
For generating keys see :meth:`generate_key` or
:meth:`generate_keypair`.
For importing keys see :ref:`importing-keys`.
Requires a read/write session, unless the object is not to be
stored.
:param dict(Attribute,*) attrs: attributes of the object to create
:rtype: Object
"""
raise NotImplementedError()
def create_domain_parameters(self, key_type, attrs,
local=False, store=False):
"""
Create a domain parameters object from known parameters.
Domain parameters are used for key generation of key types such
as DH, DSA and EC.
You can also generate new parameters using
:meth:`generate_domain_parameters`.
The `local` parameter creates a Python object that is not created on
the HSM (its object handle will be unset). This is useful if you only
need the domain parameters to create another object, and do not need a
real PKCS #11 object in the session.
.. warning::
Domain parameters have no id or labels. Storing them is possible
but be aware they may be difficult to retrieve.
:param KeyType key_type: Key type these parameters are for
:param dict(Attribute,*) attrs: Domain parameters
(specific tp `key_type`)
:param local: if True, do not transfer parameters to the HSM.
:param store: if True, store these parameters permanently in the HSM.
:rtype: DomainParameters
"""
raise NotImplementedError()
def generate_domain_parameters(self, key_type, param_length, store=False,
mechanism=None, mechanism_param=None,
template=None):
"""
Generate domain parameters.
See :meth:`create_domain_parameters` for creating domain parameter
objects from known parameters.
See :meth:`generate_key` for documentation on mechanisms and templates.
.. warning::
Domain parameters have no id or labels. Storing them is possible
but be aware they may be difficult to retrieve.
:param KeyType key_type: Key type these parameters are for
:param int params_length: Size of the parameters (e.g. prime length)
in bits.
:param store: Store these parameters in the HSM
:param Mechanism mechanism: Optional generation mechanism (or default)
:param bytes mechanism_param: Optional mechanism parameter.
:param dict(Attribute,*) template: Optional additional attributes.
:rtype: DomainParameters
"""
raise NotImplementedError()
def generate_key(self, key_type, key_length=None,
id=None, label=None,
store=False, capabilities=None,
mechanism=None, mechanism_param=None,
template=None):
"""
Generate a single key (e.g. AES, DES).
Keys should set at least `id` or `label`.
An appropriate `mechanism` will be chosen for `key_type`
(see :attr:`DEFAULT_GENERATE_MECHANISMS`) or this can be overridden.
Similarly for the `capabilities` (see
:attr:`DEFAULT_KEY_CAPABILITIES`).
The `template` will extend the default template used to make the
key.
Possible mechanisms and template attributes are defined by `PKCS #11
<http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/pkcs11-curr-v2.40.html>`_.
Invalid mechanisms or attributes should raise
:exc:`pkcs11.exceptions.MechanismInvalid` and
:exc:`pkcs11.exceptions.AttributeTypeInvalid` respectively.
:param KeyType key_type: Key type (e.g. KeyType.AES)
:param int key_length: Key length in bits (e.g. 256).
:param bytes id: Key identifier.
:param str label: Key label.
:param store: Store key on token (requires R/W session).
:param MechanismFlag capabilities: Key capabilities (or default).
:param Mechanism mechanism: Generation mechanism (or default).
:param bytes mechanism_param: Optional vector to the mechanism.
:param dict(Attribute,*) template: Additional attributes.
:rtype: SecretKey
"""
raise NotImplementedError()
def generate_keypair(self, key_type, key_length=None, **kwargs):
"""
Generate a asymmetric keypair (e.g. RSA).
See :meth:`generate_key` for more information.
:param KeyType key_type: Key type (e.g. KeyType.DSA)
:param int key_length: Key length in bits (e.g. 256).
:param bytes id: Key identifier.
:param str label: Key label.
:param store: Store key on token (requires R/W session).
:param MechanismFlag capabilities: Key capabilities (or default).
:param Mechanism mechanism: Generation mechanism (or default).
:param bytes mechanism_param: Optional vector to the mechanism.
:param dict(Attribute,*) template: Additional attributes.
:rtype: (PublicKey, PrivateKey)
"""
if key_type is KeyType.DSA:
if key_length is None:
raise ArgumentsBad("Must specify `key_length`")
params = self.generate_domain_parameters(key_type, key_length)
return params.generate_keypair(**kwargs)
else:
return self._generate_keypair(key_type, key_length=key_length,
**kwargs)
def seed_random(self, seed):
"""
Mix additional seed material into the RNG (if supported).
:param bytes seed: Bytes of random to seed.
"""
raise NotImplementedError()
def generate_random(self, nbits):
"""
Generate `length` bits of random or pseudo-random data (if supported).
:param int nbits: Number of bits to generate.
:rtype: bytes
"""
raise NotImplementedError()
def digest(self, data, **kwargs):
"""
Digest `data` using `mechanism`.
`data` can be a single value or an iterator.
:class:`Key` objects can also be digested, optionally interspersed
with :class:`bytes`.
:param data: Data to digest
:type data: str, bytes, Key or iter(bytes, Key)
:param Mechanism mechanism: digest mechanism
:param bytes mechanism_param: optional mechanism parameter
:rtype: bytes
"""
# If data is a string, encode it now as UTF-8.
if isinstance(data, str):
data = data.encode('utf-8')
if isinstance(data, bytes):
return self._digest(data, **kwargs)
elif isinstance(data, Key):
data = (data,)
return self._digest_generator(data, **kwargs)
class Object:
"""
A PKCS#11 object residing on a :class:`Token`.
Objects implement :meth:`__getitem__` and :meth:`__setitem__` to
retrieve :class:`pkcs11.constants.Attribute` values on the object.
Valid attributes for an object are given in `PKCS #11
<http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/pkcs11-curr-v2.40.html>`_.
Invalid attributes should raise
:exc:`pkcs11.exceptions.AttributeTypeInvalid`.
"""
object_class = None
""":class:`pkcs11.constants.ObjectClass` of this Object."""
def __init__(self, session, handle):
self.session = session
""":class:`Session` this object is valid for."""
self._handle = handle
def __eq__(self, other):
return self.session == other.session and \
self._handle == other._handle
def __hash__(self):
return hash((self.session, self._handle))
def copy(self, attrs):
"""
Make a copy of the object with new attributes `attrs`.
Requires a read/write session, unless the object is not to be
stored.
::
new = key.copy({
Attribute.LABEL: 'MY NEW KEY',
})
Certain objects may not be copied. Calling :meth:`copy` on such
objects will result in an exception.
:param dict(Attribute,*) attrs: attributes for the new :class:`Object`
:rtype: Object
"""
raise NotImplementedError()
def destroy(self):
"""
Destroy the object.
Requires a read/write session, unless the object is not stored.
Certain objects may not be destroyed. Calling :meth:`destroy` on such
objects will result in an exception.
The :class:`Object` is no longer valid.
"""
raise NotImplementedError()
class DomainParameters(Object):
"""
PKCS#11 Domain Parameters.
Used to store domain parameters as part of the key generation step, e.g.
in DSA and Diffie-Hellman.
"""
def __init__(self, session, handle, params=None):
super().__init__(session, handle)
self.params = params
def __getitem__(self, key):
if self._handle is None:
try:
return self.params[key]
except KeyError:
raise AttributeTypeInvalid
else:
return super().__getitem__(key)
def __setitem__(self, key, value):
if self._handle is None:
self.params[key] = value
else:
super().__setitem__(key, value)
@cached_property
def key_type(self):
"""
Key type (:class:`pkcs11.mechanisms.KeyType`) these parameters
can be used to generate.
"""
return self[Attribute.KEY_TYPE]
def generate_keypair(self, id=None, label=None,
store=False, capabilities=None,
mechanism=None, mechanism_param=None,
public_template=None, private_template=None):
"""
Generate a key pair from these domain parameters (e.g. for
Diffie-Hellman.
See :meth:`Session.generate_key` for more information.
:param bytes id: Key identifier.
:param str label: Key label.
:param store: Store key on token (requires R/W session).
:param MechanismFlag capabilities: Key capabilities (or default).
:param Mechanism mechanism: Generation mechanism (or default).
:param bytes mechanism_param: Optional vector to the mechanism.
:param dict(Attribute,*) template: Additional attributes.
:rtype: (PublicKey, PrivateKey)
"""
raise NotImplementedError()
class Key(Object):
"""Base class for all key :class:`Object` types."""
@cached_property
def id(self):
"""Key id (:class:`bytes`)."""
return self[Attribute.ID]
@cached_property
def label(self):
"""Key label (:class:`str`)."""
return self[Attribute.LABEL]
@cached_property
def key_type(self):
"""Key type (:class:`pkcs11.mechanisms.KeyType`)."""
return self[Attribute.KEY_TYPE]
@cached_property
def _key_description(self):
"""A description of the key."""
try:
return '%s-bit %s' % (self.key_length, self.key_type.name)
except AttributeTypeInvalid:
return self.key_type.name
def __repr__(self):
return "<%s label='%s' id='%s' %s>" % (
type(self).__name__,
self.label,
hexlify(self.id).decode('ascii'),
self._key_description)
class SecretKey(Key):
"""
A PKCS#11 :attr:`pkcs11.constants.ObjectClass.SECRET_KEY` object
(symmetric encryption key).
"""
object_class = ObjectClass.SECRET_KEY
@cached_property
def key_length(self):
"""Key length in bits."""
return self[Attribute.VALUE_LEN] * 8
class PublicKey(Key):
"""
A PKCS#11 :attr:`pkcs11.constants.ObjectClass.PUBLIC_KEY` object
(asymmetric public key).
RSA private keys can be imported and exported from PKCS#1 DER-encoding
using :func:`pkcs11.util.rsa.decode_rsa_public_key` and
:func:`pkcs11.util.rsa.encode_rsa_public_key` respectively.
"""
object_class = ObjectClass.PUBLIC_KEY
@cached_property
def key_length(self):
"""Key length in bits."""
return self[Attribute.MODULUS_BITS]
class PrivateKey(Key):
"""
A PKCS#11 :attr:`pkcs11.constants.ObjectClass.PRIVATE_KEY` object
(asymmetric private key).
RSA private keys can be imported from PKCS#1 DER-encoding using
:func:`pkcs11.util.rsa.decode_rsa_private_key`.
.. warning::
Private keys imported directly, rather than unwrapped from a trusted
private key should be considered insecure.
"""
object_class = ObjectClass.PRIVATE_KEY
@cached_property
def key_length(self):
"""Key length in bits."""
return len(self[Attribute.MODULUS]) * 8
class Certificate(Object):
"""
A PKCS#11 :attr:`pkcs11.constants.ObjectClass.CERTIFICATE` object.
PKCS#11 is limited in its handling of certificates, and does not
provide features like parsing of X.509 etc. These should be handled in
an external library. PKCS#11 will not set attributes on the certificate
based on the `VALUE`.
:func:`pkcs11.util.x509.decode_x509_certificate` will extract attributes
from a certificate to create the object.
"""
object_class = ObjectClass.CERTIFICATE
@cached_property
def certificate_type(self):
"""
The type of certificate.
:rtype: CertificateType
"""
return self[Attribute.CERTIFICATE_TYPE]
class EncryptMixin(Object):
"""
This :class:`Object` supports the encrypt capability.
"""
def encrypt(self, data, buffer_size=8192, **kwargs):
"""
Encrypt some `data`.
Data can be either :class:`str` or :class:`bytes`, in which case it
will return :class:`bytes`; or an iterable of :class:`bytes` in
which case it will return a generator yielding :class:`bytes`
(be aware, more chunks will be output than input).
If you do not specify `mechanism` then the default from
:attr:`DEFAULT_ENCRYPT_MECHANISMS` will be used. If an iterable
is passed and the mechanism chosen does not support handling data
in chunks, an exception will be raised.
Some mechanisms (including the default CBC mechanisms) require
additional parameters, e.g. an initialisation vector [#]_, to
the mechanism. Pass this as `mechanism_param`.
Documentation of these parameters is given specified in `PKCS #11
<http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/pkcs11-curr-v2.40.html>`_.
When passing an iterable for data
`buffer_size` must be sufficient to store the working buffer. An
integer number of blocks and greater than or equal to the largest
input chunk is recommended.
The returned generator obtains a lock on the :class:`Session`
to prevent other threads from starting a simultaneous operation.
The lock is released when you consume/destroy the generator.
See :ref:`concurrency`.
.. warning::
It's not currently possible to cancel an encryption operation
by deleting the generator. You must consume the generator to
complete the operation.
An example of streaming a file is as follows:
::
def encrypt_file(file_in, file_out, buffer_size=8192):
with \\
open(file_in, 'rb') as input_, \\
open(file_out, 'wb') as output:
chunks = iter(lambda: input_.read(buffer_size), '')
for chunk in key.encrypt(chunks,
mechanism_param=iv,
buffer_size=buffer_size):
output.write(chunk)
:param data: data to encrypt
:type data: str, bytes or iter(bytes)
:param Mechanism mechanism: optional encryption mechanism
(or None for default)
:param bytes mechanism_param: optional mechanism parameter
(e.g. initialisation vector).
:param int buffer_size: size of the working buffer (for generators)
:rtype: bytes or iter(bytes)
.. [#] The initialisation vector should contain quality random,
e.g. from :meth:`Session.generate_random`.
This method will not return the value of the initialisation
vector as part of the encryption. You must store that yourself.
"""
# If data is a string, encode it now as UTF-8.
if isinstance(data, str):
data = data.encode('utf-8')
if isinstance(data, bytes):
return self._encrypt(data, **kwargs)
else:
return self._encrypt_generator(data,
buffer_size=buffer_size, **kwargs)
class DecryptMixin(Object):
"""
This :class:`Object` supports the decrypt capability.
"""
def decrypt(self, data, buffer_size=8192, **kwargs):
"""
Decrypt some `data`.
See :meth:`EncryptMixin.encrypt` for more information.
:param data: data to decrypt
:type data: bytes or iter(bytes)
:param Mechanism mechanism: optional encryption mechanism
(or None for default).
:param bytes mechanism_param: optional mechanism parameter
(e.g. initialisation vector).
:param int buffer_size: size of the working buffer (for generators).
:rtype: bytes or iter(bytes)
"""
# If we're not an iterable, call into our generator with an iterable
# version and join the result at the end.
if isinstance(data, bytes):
return self._decrypt(data, **kwargs)
else:
return self._decrypt_generator(data,
buffer_size=buffer_size, **kwargs)
class SignMixin(Object):
"""
This :class:`Object` supports the sign capability.
"""
def sign(self, data, **kwargs):
"""
Sign some `data`.
See :meth:`EncryptMixin.encrypt` for more information.
For DSA and ECDSA keys, PKCS #11 outputs the two parameters (r & s)
as two concatenated `biginteger` of the same length. To convert these
into other formats, such as the format used by OpenSSL, use
:func:`pkcs11.util.dsa.encode_dsa_signature` or
:func:`pkcs11.util.ec.encode_ecdsa_signature`.
:param data: data to sign
:type data: str, bytes or iter(bytes)
:param Mechanism mechanism: optional signing mechanism
:param bytes mechanism_param: optional mechanism parameter
:rtype: bytes
"""
# If data is a string, encode it now as UTF-8.
if isinstance(data, str):
data = data.encode('utf-8')
if isinstance(data, bytes):
return self._sign(data, **kwargs)
else:
return self._sign_generator(data, **kwargs)
class VerifyMixin(Object):
"""
This :class:`Object` supports the verify capability.
"""
def verify(self, data, signature, **kwargs):
"""
Verify some `data`.
See :meth:`EncryptMixin.encrypt` for more information.
Returns True if `signature` is valid for `data`.
For DSA and ECDSA keys, PKCS #11 expects the two parameters (r & s)
as two concatenated `biginteger` of the same length. To convert these
from other formats, such as the format used by OpenSSL, use
:func:`pkcs11.util.dsa.decode_dsa_signature` or
:func:`pkcs11.util.ec.decode_ecdsa_signature`.
:param data: data to sign
:type data: str, bytes or iter(bytes)
:param bytes signature: signature
:param Mechanism mechanism: optional signing mechanism
:param bytes mechanism_param: optional mechanism parameter
:rtype: bool
"""
# If data is a string, encode it now as UTF-8.
if isinstance(data, str):
data = data.encode('utf-8')
try:
if isinstance(data, bytes):
self._verify(data, signature, **kwargs)
else:
self._verify_generator(data, signature, **kwargs)
return True
except (SignatureInvalid, SignatureLenRange):
return False
class WrapMixin(Object):
"""
This :class:`Object` supports the wrap capability.
"""
def wrap_key(self, key,
mechanism=None, mechanism_param=None):
"""
Use this key to wrap (i.e. encrypt) `key` for export. Returns
an encrypted version of `key`.
`key` must have :attr:`Attribute.EXTRACTABLE` = True.
:param Key key: key to export
:param Mechanism mechanism: wrapping mechanism (or None for default).
:param bytes mechanism_param: mechanism parameter (if required)
:rtype: bytes
"""
raise NotImplementedError()
class UnwrapMixin(Object):
"""
This :class:`Object` supports the unwrap capability.
"""
def unwrap_key(self, object_class, key_type, key_data,
id=None, label=None,
mechanism=None, mechanism_param=None,
store=False, capabilities=None,
template=None):
"""
Use this key to unwrap (i.e. decrypt) and import `key_data`.
See :class:`Session.generate_key` for more information.
:param ObjectClass object_class: Object class to import as
:param KeyType key_type: Key type (e.g. KeyType.AES)
:param bytes key_data: Encrypted key to unwrap
:param bytes id: Key identifier.
:param str label: Key label.
:param store: Store key on token (requires R/W session).
:param MechanismFlag capabilities: Key capabilities (or default).
:param Mechanism mechanism: Generation mechanism (or default).
:param bytes mechanism_param: Optional vector to the mechanism.
:param dict(Attribute,*) template: Additional attributes.
:rtype: Key
"""
raise NotImplementedError()
class DeriveMixin(Object):
"""
This :class:`Object` supports the derive capability.
"""
def derive_key(self, key_type, key_length,
id=None, label=None,
store=False, capabilities=None,
mechanism=None, mechanism_param=None,
template=None):
"""
Derive a new key from this key. Used to create session
keys from a PKCS key exchange.
Typically the mechanism, e.g. Diffie-Hellman, requires you
to specify the other party's piece of shared information as
the `mechanism_param`. Some mechanisms require a tuple of data (see
:class:`pkcs11.mechanisms.Mechanism`).
See :class:`Session.generate_key` for more documentation on key
generation.
Diffie-Hellman example:
::
# Diffie-Hellman domain parameters
# e.g. from RFC 3526, RFC 5114 or `openssl dhparam`
prime = [0xFF, ...]
base = [0x02]
parameters = session.create_domain_parameters(KeyType.DH, {
Attribute.PRIME: prime,
Attribute.BASE: base,
}, local=True)
# Alice generates a DH key pair from the public
# Diffie-Hellman parameters
public, private = parameters.generate_keypair()
alices_value = public[Attribute.VALUE]
# Bob generates a DH key pair from the same parameters.
# Alice exchanges public values with Bob...
# She sends `alices_value` and receives `bobs_value`.
# (Assuming Alice is doing AES CBC, she also needs to send an IV)
# Alice generates a session key with Bob's public value
# Bob will generate the same session key using Alice's value.
session_key = private.derive_key(
KeyType.AES, 128,
mechanism_param=bobs_value)
Elliptic-Curve Diffie-Hellman example:
::
# DER encoded EC params, e.g. from OpenSSL
# openssl ecparam -outform der -name prime192v1 | base64
#
# Check what EC parameters the module supports with
# slot.get_module_info()
parameters = session.create_domain_parameters(KeyType.EC, {
Attribute.EC_PARAMS: b'...',
}, local=True)
# Alice generates a EC key pair, and gets her public value
public, private = parameters.generate_keypair()
alices_value = public[Attribute.EC_POINT]
# Bob generates a DH key pair from the same parameters.
# Alice exchanges public values with Bob...
# She sends `alices_value` and receives `bobs_value`.
# Alice generates a session key with Bob's public value
# Bob will generate the same session key using Alice's value.
session_key = private.derive_key(
KeyType.AES, 128,
mechanism_param=(KDF.NULL, None, bobs_value))
:param KeyType key_type: Key type (e.g. KeyType.AES)
:param int key_length: Key length in bits (e.g. 256).
:param bytes id: Key identifier.
:param str label: Key label.
:param store: Store key on token (requires R/W session).
:param MechanismFlag capabilities: Key capabilities (or default).
:param Mechanism mechanism: Generation mechanism (or default).
:param bytes mechanism_param: Optional vector to the mechanism.
:param dict(Attribute,*) template: Additional attributes.
:rtype: SecretKey
"""
raise NotImplementedError()
|