crypto-secret.cr/README.md

177 lines
5.9 KiB
Markdown
Raw Normal View History

2021-06-13 02:42:07 +02:00
# crypto-secret.cr
[![Crystal CI](https://github.com/didactic-drunk/crypto-secret.cr/actions/workflows/crystal.yml/badge.svg)](https://github.com/didactic-drunk/crypto-secret.cr/actions/workflows/crystal.yml)
[![GitHub release](https://img.shields.io/github/release/didactic-drunk/crypto-secret.cr.svg)](https://github.com/didactic-drunk/crypto-secret.cr/releases)
![GitHub commits since latest release (by date) for a branch](https://img.shields.io/github/commits-since/didactic-drunk/crypto-secret.cr/latest)
2021-06-13 02:43:35 +02:00
[![Docs](https://img.shields.io/badge/docs-available-brightgreen.svg)](https://didactic-drunk.github.io/crypto-secret.cr/main)
2021-06-13 01:03:59 +02:00
2021-06-14 04:00:53 +02:00
Secrets hold sensitive information
2021-06-14 09:29:23 +02:00
The Secret interface manages limited time access to a secret and securely erases the secret when no longer needed.
2021-06-14 04:00:53 +02:00
Secret providers may implement additional protections via:
2021-06-14 20:15:48 +02:00
* `#noaccess`, `#readonly` or `#readwrite`
2021-06-14 04:00:53 +02:00
* Using [mprotect]() to control access
* Encrypting the data when not in use
* Deriving keys on demand from a HSM
* Preventing the Secret from entering swap ([mlock]())
* Preventing the Secret from entering core dumps
* Other
2021-06-13 01:03:59 +02:00
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
2021-06-13 02:42:07 +02:00
crypto-secret:
github: didactic-drunk/crypto-secret
2021-06-13 01:03:59 +02:00
```
2. Run `shards install`
## Usage
```crystal
2021-06-13 02:42:07 +02:00
require "crypto-secret/not"
2021-06-13 01:03:59 +02:00
2021-06-14 09:29:23 +02:00
# `Not` isn't actually a secret and does none of what the comments say
# Replace `Not` with a secure implementation like [Sodium::SecureBuffer](https://didactic-drunk.github.io/sodium.cr/master/Sodium/SecureBuffer.html)
secret = Crypto::Secret::Not.new 32
secret.wipe do
secret.readonly do |slice|
2021-06-14 04:00:53 +02:00
# May only read slice
end
2021-06-14 09:29:23 +02:00
secret.readwrite do |slice|
2021-06-14 04:00:53 +02:00
# May read or write to slice
end
2021-06-14 09:29:23 +02:00
end # secret is erased
2021-06-13 01:03:59 +02:00
```
2021-06-14 04:00:53 +02:00
## What is a Secret?
<strike>Secrets are Keys</strike>
That's complicated and specific to the application. Some examples:
* Passwords
* A crypto key is always a Secret. Except when used for verification (sometimes)
* A decrypted password vault (but it's not a Key)
Not secrets:
* Digest output. Except when used for key derivation, then it's a Secret, including the Digest state
2021-06-14 09:29:23 +02:00
* IO::Memory or writing a file. Except when the file is a password vault, cryptocurrency wallet, encrypted mail/messages, goat porn, maybe "normal" porn, sometimes scat porn, occassionally furry, not vanilla porn
2021-06-14 04:00:53 +02:00
## Why?
The Secret interface is designed to handle varied levels of confidentiality with a unified API for cryptography libraries.
There is no one size fits all solution. Different applications have different security requirements. Sometimes for the same algorithm.
A master key (kgk) may reside on a HSM and generate subkeys on demand.
2021-06-14 09:29:23 +02:00
Or for most applications the master key may use a best effort approach using a combination of [guard pages, mlock, mprotect].
2021-06-14 04:00:53 +02:00
Other keys in the same application may handle a high volume of messages where [guard pages, mlock, mprotect] overhead is too high.
2021-06-14 09:29:23 +02:00
A key verifying a public key signature may not be Secret (but is a Secret::Not).
2021-06-14 04:00:53 +02:00
2021-06-14 09:29:23 +02:00
## How do I use a Secret returned by a shard?
That depends on what you use it for.
#### Using a Secret key
TODO
#### Using a Secret to hold decrypted file contents:
```
key = ...another Secret...
encrypted_str = File.read("filename")
decrypted_size = encrypted_str.bytesize - mac_size
file_secret = Crypto::Secret::Default.new decrypted_size
file_secret.wipe do
file_secrets.readwrite do |slice|
decrypt(key: key, src: encrypted_str, dst: slice)
# Do something with file contents in slice
end
end # Decrypted data is erased
```
## When should I use a Secret?
When implementing an encryption class return `Secret` keys with a sane default implementation that suits the average use for your class. Several default implementations will be provided.
Allow overriding the default returned key and/or allow users of your class to provide their own `Secret` for cases where they need more or less protection.
Example:
```
class SimplifiedEncryption
# Allow users of your library to provide their own Secret key. Also provide a sane default.
def encrypt(data : Bytes | String, key : Secret? = nil) : {Secret, Bytes}
key ||= Crypto::Secret::Default.random
...
{key, encrypted_slice}
end
end
```
## What attacks does a Secret protect against?
2021-06-14 20:15:48 +02:00
* Timing attacks when comparing secrets by overriding `==`
* Leaking data in to logs by overriding `inspect`
* Wiping memory when the secret is no longer in use
2021-06-14 09:29:23 +02:00
TODO: describe implementations
2021-06-14 20:15:48 +02:00
2021-06-14 09:29:23 +02:00
## Other languages/libraries
* rust: [secrets](https://github.com/stouset/secrets/)
* c: [libsodium](https://github.com/jedisct1/libsodium-doc/blob/master/helpers/memory_management.md#guarded_heap_allocations)
* go: [memguard](https://github.com/awnumar/memguard)
* haskell: [securemem](https://hackage.haskell.org/package/securemem)
* c#: [SecureString](https://docs.microsoft.com/en-us/dotnet/api/system.security.securestring)
2021-06-14 04:00:53 +02:00
2021-06-13 01:03:59 +02:00
## Implementing a new Secret holding class
2021-06-14 04:00:53 +02:00
**Only intended for use by crypto library authors**
2021-06-13 01:03:59 +02:00
```
class MySecret
include Crypto::Secret
def initialize(size)
# allocate storage
# optionally mlock
end
2021-06-14 04:00:53 +02:00
def to_slice(& : Bytes -> Nil)
2021-06-14 09:29:23 +02:00
# The yielded Slice only needs to be valid within the block
2021-06-14 04:00:53 +02:00
# yield Slice.new(pointer, size)
ensure
# optionally reencrypt or signal HSM
end
def bytesize : Int32
# return the size
2021-06-13 01:03:59 +02:00
end
# optionally override [noaccess, readonly, readwrite]
2021-06-14 09:29:23 +02:00
# optionally override (almost) any other method with an implementation specific version
2021-06-13 01:03:59 +02:00
end
```
## Contributing
2021-06-14 09:29:23 +02:00
**Open a discussion or issue before creating PR's**
2021-06-14 04:00:53 +02:00
2021-06-13 02:42:07 +02:00
1. Fork it (<https://github.com/your-github-user/crypto-secret/fork>)
2021-06-13 01:03:59 +02:00
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
## Contributors
- [didactic-drunk](https://github.com/didactic-drunk) - current maintainer