diff options
| author | Joe Richey <joerichey@google.com> | 2017-03-01 16:57:27 -0800 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-05-02 13:39:18 -0700 |
| commit | 4680eaaef15171948332ad7d13def794635c095d (patch) | |
| tree | 0a98db9734b4fcab463152a53b83a9e75f109916 /README.md | |
| parent | f49cd711a063136e6978b6a4bb2686d96c725bc8 (diff) | |
util: convenience utilities for fscrypt
This commit adds in the util package. This package provides
two functions for creating errors. These functions are:
- InvalidInputErrorF - bad input from user or caller
- SystemErrorF - low level failure
It also adds in a small function for converting Go byte slices into C
void pointers. This will be very useful for interoperating with C.
Change-Id: I87ad7946dd5fa26e28927590aff4bcc9fd5ce4f7
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -76,10 +76,10 @@ default. ## Running and Installing -`fscrypt` is a standalone binary, and it currently has no runtime dependencies. -Installing it just requires placing it in your path or running `make install`. -Change `$GOBIN` to change the install location of `fscrypt`; by default it is -installed to `$GOPATH/bin`. +`fscrypt` currently has no runtime dependencies. Installing it just requires +placing it in your path or running `make install`. Change `$GOBIN` to change the +install location of `fscrypt`. By default, `fscrypt` is installed to +`$GOPATH/bin`. ## Example Usage |