Utils¶
blake2signer.utils
¶
Miscellaneous utilities.
b32decode(data)
¶
Decode data encoded as Base 32 without padding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to decode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Original data. |
Source code in blake2signer/utils.py
105 106 107 108 109 110 111 112 113 114 | |
b32encode(data)
¶
Encode data as Base 32, stripping padding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to encode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Encoded data. |
Source code in blake2signer/utils.py
93 94 95 96 97 98 99 100 101 102 | |
b58decode(data)
¶
Decode data encoded as Base 58.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to decode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Original data. |
Source code in blake2signer/utils.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | |
b58encode(data)
¶
Encode data as Base 58.
Base 58 has no padding, and it contains characters from a-z (except l), A-Z (except I and O), and numbers 1-9, to improve readability and reduce transcription errors.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to encode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Encoded data. |
Source code in blake2signer/utils.py
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 | |
b64decode(data)
¶
Decode data encoded as Base 64 URL-safe without padding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to decode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Original data. |
Source code in blake2signer/utils.py
78 79 80 81 82 83 84 85 86 87 | |
b64encode(data)
¶
Encode data as Base 64 URL-safe, stripping padding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to encode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Encoded data. |
Source code in blake2signer/utils.py
63 64 65 66 67 68 69 70 71 72 | |
file_mode_is_text(file)
¶
Check if a given file is opened in text mode, or otherwise in binary mode.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file
|
IO[AnyStr]
|
File to check its mode. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if file is opened in text mode, False otherwise. |
Source code in blake2signer/utils.py
213 214 215 216 217 218 219 220 221 222 | |
force_bytes(value)
¶
Force a given value into bytes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Union[str, bytes]
|
Value to convert to bytes. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Converted value into bytes. |
Raises:
| Type | Description |
|---|---|
TypeError
|
Value is neither bytes nor string. |
Source code in blake2signer/utils.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | |
force_string(value)
¶
Force a given value into string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Union[str, bytes]
|
Value to convert to string. |
required |
Returns:
| Type | Description |
|---|---|
str
|
Converted value into string. |
Raises:
| Type | Description |
|---|---|
TypeError
|
Value is neither bytes nor string. |
Source code in blake2signer/utils.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
generate_secret()
¶
Generate a secure, pseudorandom value for use as a secret.
Store the value generated by this function in your environment file, or secrets manager.
Returns:
| Type | Description |
|---|---|
str
|
A secure, pseudorandom value for use as a secret. |
Source code in blake2signer/utils.py
256 257 258 259 260 261 262 263 264 | |
get_current_time()
¶
Return the current time in seconds since the Epoch.
Source code in blake2signer/utils.py
251 252 253 | |
hexdecode(data)
¶
Decode data encoded as hexadecimal (uppercase).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to decode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Original data. |
Source code in blake2signer/utils.py
130 131 132 133 134 135 136 137 138 139 | |
hexencode(data)
¶
Encode data as hexadecimal (uppercase).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
bytes
|
Data to encode. |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
Encoded data. |
Source code in blake2signer/utils.py
117 118 119 120 121 122 123 124 125 126 127 | |
ordinal(number)
¶
Convert an integer into its ordinal representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
number
|
int
|
Integer number to get its ordinal representation. |
required |
Returns:
| Type | Description |
|---|---|
str
|
The ordinal string representation of the number as the number + ordinal suffix. |
Examples:
>>> ordinal(0)
'0th'
>>> ordinal(3)
'3rd'
Source code in blake2signer/utils.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | |
timestamp_to_aware_datetime(timestamp)
¶
Convert a UNIX timestamp into an aware datetime in UTC.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timestamp
|
Union[int, float]
|
UNIX timestamp to convert. |
required |
Returns:
| Type | Description |
|---|---|
datetime
|
Converted timestamp into an aware datetime in UTC. |
Source code in blake2signer/utils.py
201 202 203 204 205 206 207 208 209 210 | |