Simple Secret Primitive for Python
Project description
sosecrets-core
Version: 1.0.20
This Repo is a Cython implementation of a Secret class that allows you to hide a value or function behind a layer of security.
The idea is that you can expose the secret value only a limited number of times, and only through a function call that checks the current exposure count against a maximum exposure count.
The Secret class has four attributes:
inner_secret: a private attribute that stores the actual secret value or function.expose_count: a readonly attribute that keeps track of how many times the secret has been exposed.max_expose_count: a public (read and write) attribute that sets the maximum number of times the secret can be exposed. If set to any negative integers, there is no limit to the number of exposures.apply: a public method that applies a given function to the exposed secret and returns a newSecretobject with the result.
API
Secret
Secret[T] is generic over any type T.
A class representing a secret value with controlled exposure.
__init__(self, value: Optional[T] = ..., *, func: Optional[Callable[..., T]] = ..., func_args: Tuple[Any, ...] = ..., func_kwargs: Dict[str, Any] = ..., max_expose_count: int = ...) -> Secret[T]
Initialize a Secret object.
Notes:
Secretis not thread-safe, becauseexpose_countis not atomically-mutated.
- value: The initial value of the
Secretobject. If provided, it takes precedence overfunc. - func: A function used to generate the initial value of the
Secretobject. Ignored if value is provided. - func_args: Positional arguments to pass to the
funcfunction. - func_kwargs: Keyword arguments to pass to the
funcfunction. - max_expose_count: The maximum number of times the
Secretobject can be exposed. Initialized to -1 for unlimited.
Raises:
- ValueError: If both
valueandfuncarguments are provided.
Secret.expose_secret()
Exposes the secret value.
expose_secret(self) -> T
Returns:
The inner secret value.
Raises:
- AttributeError: If the
Secretobject has reached the maximum exposure count.
Secret.apply(...)
Apply a function to the inner secret value and return a new Secret object.
apply(self, func: Callable[[Any, ...], U], *, func_args: Tuple[Any, ...] = ..., func_kwargs: Dict[str, Any] = ...) -> Secret[U]
- func: The function to apply to the inner secret value.
- func_args: Positional arguments to pass to the
funcfunction. - func_kwargs: Keyword arguments to pass to the
funcfunction.
Returns:
A new Secret object with the result of applying the function to the inner secret value.
License
This code is released under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sosecrets_core-1.0.20.tar.gz.
File metadata
- Download URL: sosecrets_core-1.0.20.tar.gz
- Upload date:
- Size: 46.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0bebf70e2009962117d807f21e8d59cb7546c4c2ddd3d801b1a16a66a1f63dd
|
|
| MD5 |
25ee7a9ab03709bff293b35e7f36ede4
|
|
| BLAKE2b-256 |
8d80c6609e4c3ae3fb208f9fcbf7215e999a09baa69d7fd501e7cefdf8f39c30
|
File details
Details for the file sosecrets_core-1.0.20-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: sosecrets_core-1.0.20-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 63.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01d378da2d4edc098497be147b1af313b64d78172de6fbc557ff08087638e677
|
|
| MD5 |
1ca8fd3b81ec21e4e6ec78432022e5e6
|
|
| BLAKE2b-256 |
def45bd6f23995e13bea13468480f106bb35564c0a45495df64a5228f12844b1
|