Skip to main content

Simple Secret Primitive for Python

Project description

sosecrets-core

https://img.shields.io/github/actions/workflow/status/jymchng/sosecrets-core/testing.yml https://img.shields.io/pypi/pyversions/sosecrets-core https://img.shields.io/pypi/dm/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 new Secret object 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:

  1. Secret is not thread-safe, because expose_count is not atomically-mutated.
  • value: The initial value of the Secret object. If provided, it takes precedence over func.
  • func: A function used to generate the initial value of the Secret object. Ignored if value is provided.
  • func_args: Positional arguments to pass to the func function.
  • func_kwargs: Keyword arguments to pass to the func function.
  • max_expose_count: The maximum number of times the Secret object can be exposed. Initialized to -1 for unlimited.

Raises:

  • ValueError: If both value and func arguments are provided.

Secret.expose_secret()

Exposes the secret value.

expose_secret(self) -> T

Returns:

The inner secret value.

Raises:

  • AttributeError: If the Secret object 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 func function.
  • func_kwargs: Keyword arguments to pass to the func function.

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sosecrets_core-1.0.20.tar.gz (46.2 kB view details)

Uploaded Source

Built Distribution

sosecrets_core-1.0.20-cp310-cp310-win_amd64.whl (63.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Hashes for sosecrets_core-1.0.20.tar.gz
Algorithm Hash digest
SHA256 b0bebf70e2009962117d807f21e8d59cb7546c4c2ddd3d801b1a16a66a1f63dd
MD5 25ee7a9ab03709bff293b35e7f36ede4
BLAKE2b-256 8d80c6609e4c3ae3fb208f9fcbf7215e999a09baa69d7fd501e7cefdf8f39c30

See more details on using hashes here.

File details

Details for the file sosecrets_core-1.0.20-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sosecrets_core-1.0.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01d378da2d4edc098497be147b1af313b64d78172de6fbc557ff08087638e677
MD5 1ca8fd3b81ec21e4e6ec78432022e5e6
BLAKE2b-256 def45bd6f23995e13bea13468480f106bb35564c0a45495df64a5228f12844b1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page