Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rabbitmq/credentials-obfuscation
Tiny library/OTP app for credential obfuscation
https://github.com/rabbitmq/credentials-obfuscation
elixir erlang obfuscation
Last synced: about 3 hours ago
JSON representation
Tiny library/OTP app for credential obfuscation
- Host: GitHub
- URL: https://github.com/rabbitmq/credentials-obfuscation
- Owner: rabbitmq
- License: other
- Created: 2019-08-13T07:24:45.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-05T15:13:15.000Z (3 months ago)
- Last Synced: 2024-11-08T16:54:09.755Z (7 days ago)
- Topics: elixir, erlang, obfuscation
- Language: Erlang
- Homepage:
- Size: 168 KB
- Stars: 14
- Watchers: 18
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Credential Obfuscator
This is a small library OTP application that acts as a helper. It encrypts and decrypts sensitive data
typically stored in processes state with a one-off key (key material must be provided on node start).
One example of such sensitive data is credentials used to access remote services.This is necessary to avoid the sensitive values logged when process state is dumped by
the Erlang runtime (`error_logger`).Note that this application **cannot protect against heap dumping attacks** and only helps
avoid sensitive data appearing in log files.## Supported Erlang/OTP Versions
This library uses the modern `crypto` API and **requires Erlang 23.2 or a later version**.
## Usage
First, make the `credentials_obfuscation` application a dependency of your project.
Then, during the start-up of your application, and after the `credentials_obfuscation` application starts,
provide the secret value:``` erl
CookieBin = atom_to_binary(erlang:get_cookie(), latin1),
credentials_obfuscation:set_secret(CookieBin)
```To use a random value, do the following:
``` erl
Bytes = crypto:strong_rand_bytes(128),
credentials_obfuscation:set_secret(Bytes)
```To encrypt and decrypt a binary or list value:
``` erl
Encrypted = credentials_obfuscation:encrypt(<<"abc">>).
% => {encrypted,<<"KdH0bP4CYasbA3X79nKShEJhajQ7D7wz1G4yqJmDS4d7zRuuUhAPuQKxdDVgxQtO">>}credentials_obfuscation:decrypt(Encrypted).
% => <<"abc">>
```Lists (char lists in Elixir) will be converted to binaries before encryption.
This means that decrypted values will alwyas be returned as binaries.Lists here mean "byte lists", that is Unicode characters are not
supported. This should still be sufficient for encryption of
URIs, generated credentials, and many kinds of sensitive identifiers.## License and Copyright
See [LICENSE](./LICENSE).
(c) 2019-2023 VMware, Inc or its affiliates.
(c) 2023-2024 Broadcom, Inc or its subsidiaries.