We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e03a01 commit e32df04Copy full SHA for e32df04
README.md
@@ -19,6 +19,18 @@ Content encryption algorithms include:
19
* `A256GCM`, `A192GCM`, `A128GCM` - AES GCM. See [RFC 7518 5.3](https://tools.ietf.org/html/rfc7518#section-5.3)
20
* `A256CBC-HS512`, `A192CBC-HS384`, `A128CBC-HS256` - AES_CBC_HMAC_SHA2. See [RFC 7518 5.2.6](https://tools.ietf.org/html/rfc7518#section-5.2.6)
21
22
+## Installation
23
+
24
+Add pbcs to the `deps` section of your mix.exs file:
25
26
+```elixir
27
+def deps do
28
+ [
29
+ {:pbcs, "~> 0.1.0"}
30
+ ]
31
+end
32
+```
33
34
## Usage
35
36
```elixir
0 commit comments