Key Support
This part of the library implements support for public and private keys used for reading and writing Crypt4GH containers.
Protocol
oarepo_c4gh.key.key
An abstract Base Class for Asymmetric Secret Keys
This module contains only the interface specification for all key classes implementations.
Key
Bases: Protocol
This is an abstract class, containing only abstract methods used to compute the Diffie-Hellman key exchange over the Montgomery curve Curve25519 as specified by the X25519 standard and auxilliary informative helpers.
Source code in oarepo_c4gh/key/key.py
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 |
|
can_compute_symmetric_keys: bool
property
A predicate returning true if this key instance can perform read/write key derivation. This is usually determined by having access to the private key (for software implementation) or some other means of working with the private key (for HSM).
Returns:
Type | Description |
---|---|
bool
|
true if it can perform symmetric key derivation |
public_key: bytes
property
The derived classes must implement providing corresponding public key in this method.
Returns:
Type | Description |
---|---|
bytes
|
The 32 bytes of the public key. |
__bytes__() -> bytes
Default converter to bytes returns the public key bytes.
Source code in oarepo_c4gh/key/key.py
75 76 77 |
|
compute_read_key(writer_public_key: bytes) -> bytes
Accepts the writer public key and computes the shared secret based on the public and secret key (this key) of the reader particular key source implementation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
writer_public_key
|
bytes
|
the 32 bytes of the writer public key |
required |
Returns:
Type | Description |
---|---|
bytes
|
The shared secret as 32 bytes - usable as symmetric key. |
Source code in oarepo_c4gh/key/key.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
compute_write_key(reader_public_key: bytes) -> bytes
Accepts the intended reader public key and computes the shared secret based on the public and secret key (this key) of the writer particular key source implementation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
reader_public_key
|
bytes
|
the 32 bytes of the reader public key |
required |
Returns:
Type | Description |
---|---|
bytes
|
The shared secret as 32 bytes - usable as symmetric key. |
Source code in oarepo_c4gh/key/key.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
Implementations
oarepo_c4gh.key.software
A base class for all software-defined keys.
This module implements the Diffie-Hellman key exchange using software keys and NaCl bindings. The class contained here also provides an interface for setting the private key instance property by derived classes that should implement particular key loaders.
SoftwareKey
Bases: Key
This class implements the actual Diffie-Hellman key exchange with locally stored private key in the class instance.
Source code in oarepo_c4gh/key/software.py
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 |
|
can_compute_symmetric_keys: bool
property
Returns True if this key contains the private part.
Returns:
Type | Description |
---|---|
bool
|
True if private key is available. |
public_key: bytes
property
Returns the public key corresponding to the private key used.
__init__(key_data: bytes, only_public: bool = False) -> None
Performs rudimentary key data validation and initializes either only the public key or both the public and private key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key_data
|
bytes
|
the 32 bytes of key material |
required |
only_public
|
bool
|
whether this contains only the public point |
False
|
Raises:
Type | Description |
---|---|
AssertionError
|
is the key_data does not contain exactly 32 bytes |
Source code in oarepo_c4gh/key/software.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
compute_read_key(writer_public_key: bytes) -> bytes
Computes secret symmetric key used for reading Crypt4GH encrypted header packets. The instance of this class represents the reader key.
See detailed description of compute_write_key
.
For this function the "receive" key is used - which is the same as the "transmit" key of the writer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
writer_public_key
|
bytes
|
the 32 bytes of the writer public key |
required |
Returns:
Type | Description |
---|---|
bytes
|
Reader symmetric key as 32 bytes. |
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if only public key is available |
Source code in oarepo_c4gh/key/software.py
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 |
|
compute_write_key(reader_public_key: bytes) -> bytes
Computes secret symmetric key used for writing Crypt4GH encrypted header packets. The instance of this class represents the writer key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
reader_public_key
|
bytes
|
the 32 bytes of the reader public key |
required |
Returns:
Type | Description |
---|---|
bytes
|
Writer symmetric key as 32 bytes. |
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if only public key is available |
The algorithm used is not just a Diffie-Hellman key exchange to establish shared secret but it also includes derivation of two symmetric keys used in bi-directional connection. This pair of keys is derived from the shared secret concatenated with client public key and server public key by hashing such binary string with BLAKE2B-512 hash.
For server - and therefore the writer - participant it is the "transmit" key of the imaginary connection.
rx || tx = BLAKE2B-512(p.n || client_pk || server_pk)
The order of shared secret and client and server public keys in the binary string being matches must be the same on both sides. Therefore the same symmetric keys are derived. However for maintaining this ordering, each party must know which one it is - otherwise even with correctly computed shared secret the resulting pair of keys would be different.
Source code in oarepo_c4gh/key/software.py
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 |
|
oarepo_c4gh.key.c4gh
Class for loading the Crypt4GH reference key format.
C4GHKey
Bases: SoftwareKey
This class implements the loader for Crypt4GH key file format.
Source code in oarepo_c4gh/key/c4gh.py
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 |
|
from_bytes(contents: bytes, callback: callable = default_passphrase_callback) -> Self
classmethod
Opens the contents bytes as binary stream and loads the Crypt4GH key from it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
contents
|
bytes
|
complete contents of the file with Crypt4GH key. |
required |
callback
|
callable
|
must return passphrase for decryption if called. |
default_passphrase_callback
|
Returns:
Type | Description |
---|---|
Self
|
Initialized C4GHKey instance. |
Source code in oarepo_c4gh/key/c4gh.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
from_file(file_name: str, callback: callable = default_passphrase_callback) -> Self
classmethod
Opens file stream and loads the Crypt4GH key from it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_name
|
str
|
path to the file with the key. |
required |
callback
|
callable
|
must return passphrase for decryption if called. |
default_passphrase_callback
|
Returns:
Type | Description |
---|---|
Self
|
Initialized C4GHKey instance. |
Source code in oarepo_c4gh/key/c4gh.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
|
from_stream(istream: RawIOBase, callback: callable = default_passphrase_callback) -> Self
classmethod
Parses the stream with stored key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
istream
|
RawIOBase
|
input stream with the key file contents. |
required |
callback
|
callable
|
must return passphrase for decryption if called |
default_passphrase_callback
|
Returns:
Type | Description |
---|---|
Self
|
The newly constructed key instance. |
Source code in oarepo_c4gh/key/c4gh.py
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 |
|
from_string(contents: str, callback: callable = default_passphrase_callback) -> Self
classmethod
Converts string to bytes which is opened as binary stream and loads the Crypt4GH key from it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
contents
|
str
|
complete contents of the file with Crypt4GH key. |
required |
callback
|
callable
|
must return passphrase for decryption if called. |
default_passphrase_callback
|
Returns:
Type | Description |
---|---|
Self
|
Initialized C4GHKey instance. |
Source code in oarepo_c4gh/key/c4gh.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
check_c4gh_kdf(kdf_name: bytes) -> bool
Returns true if given KDF is supported.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kdf_name
|
bytes
|
KDF name string as bytes |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the KDF is supported. |
Source code in oarepo_c4gh/key/c4gh.py
19 20 21 22 23 24 25 26 27 28 |
|
check_c4gh_stream_magic(istreamb: RawIOBase) -> None
Reads enough bytes from given input stream and checks whether they contain the correct Crypt4GH signature. Raises error if it doesn't.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
istreamb
|
RawIOBase
|
input stream with the raw Crypt4GH binary key stream. |
required |
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if the signature does not match. |
Source code in oarepo_c4gh/key/c4gh.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
decode_b64_envelope(istream: RawIOBase) -> (bytes, bytes)
Reads PEM-like format and returns its label and decoded bytes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
istream
|
RawIOBase
|
input stream with the data. |
required |
Returns:
Type | Description |
---|---|
(bytes, bytes)
|
Label of the envelope and decoded content bytes. |
Source code in oarepo_c4gh/key/c4gh.py
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 |
|
decode_c4gh_bytes(istream: RawIOBase) -> bytes
Decodes binary string encoded as two-byte big-endian integer length and the actual data that follows this length field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
istream
|
RawIOBase
|
input stream from which to decode the bytes string. |
required |
Returns:
Type | Description |
---|---|
bytes
|
The decoded bytes string. |
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if there is not enough data in the stream |
Source code in oarepo_c4gh/key/c4gh.py
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 |
|
default_passphrase_callback() -> None
By default the constructor has no means of obtaining the passphrase and therefore this function unconditionally raises an exception when called.
Source code in oarepo_c4gh/key/c4gh.py
31 32 33 34 35 36 37 |
|
derive_c4gh_key(algo: bytes, passphrase: bytes, salt: bytes, rounds: int) -> bytes
Derives the symmetric key for decrypting the private key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
algo
|
bytes
|
the algorithm for key derivation |
required |
passphrase
|
bytes
|
the passphrase from which to derive the key |
required |
rounds
|
int
|
number of hashing rounds |
required |
Returns:
Type | Description |
---|---|
bytes
|
The derived symmetric key. |
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if given KDF algorithm is not supported (should not happen as this is expected to be called after parse_c4gh_kdf_options). |
Source code in oarepo_c4gh/key/c4gh.py
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 |
|
parse_c4gh_kdf_options(istreamb: RawIOBase) -> (bytes, int, bytes)
Parses KDF name and options (if applicable) from given input stream.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
istreamb
|
RawIOBase
|
input stream with the raw Crypt4GH binary stream. |
required |
Returns:
Name | Type | Description |
---|---|---|
kdf_name |
(bytes, int, bytes)
|
the name of the KDF as binary string |
kdf_rounds |
(bytes, int, bytes)
|
number of hashing rounds for KDF |
kdf_salt |
(bytes, int, bytes)
|
salt for initializing the hashing |
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if parsed KDF name is not supported |
Source code in oarepo_c4gh/key/c4gh.py
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 |
|
oarepo_c4gh.key.key_collection
This module implements a key collection that is to be used when reading the container header packets instead to support multiple available reader keys.
KeyCollection
This class implements a simple storage for a collection of reader keys and gives a reusable iterator which is guaranteed to iterate over all the keys at most once. Each round of iterations starts with the last key was used in the previous round. This ensures that if a reader key successfully reads a packet, it will always be the first to try for the very next packet.
Source code in oarepo_c4gh/key/key_collection.py
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 |
|
count: int
property
Returns the number of keys in this collection.
keys: Generator[Key, None, None]
property
Multiple-use iterator that yields each key at most once. When re-used, the iteration always starts with the most recently yielded key.
__init__(*keys: List[Key]) -> None
Initializes the collection with a list of keys.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keys
|
List[Key]
|
list of instances of classes implementing the Key Protocol |
()
|
Raises:
Type | Description |
---|---|
Crypt4GHKeyException
|
if some key(s) do not have access to private part or no keys were given |
Source code in oarepo_c4gh/key/key_collection.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|