-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
356 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.docs | ||
docs/_index.md | ||
docs/README.md | ||
strongbox | ||
bin |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# STRONGBOX ENCRYPTED RESOURCE ; See https://github.com/uw-labs/strongbox | ||
blWUTVRh4zO8PZ5AQw8OETzLfoaonYaow0YHjwa4OP27oaN3D7sGQYZEOjEdu44K++UTKophWmqj | ||
ccHBI9r5IoKk7WlfvvCoYYUtMi8KVMRghcz8putXvfnlAo1jCsqfOIuBtNBRLOjfF7cTwEjhSXG9 | ||
vCdQgkxnDRG1jisK+pGmiobnzQAfBENohesEEdRsS9dueWjH2Zp3zHotA8iq9XUA9auR7rFJ4cFk | ||
rKqkPzeGBd/UP9zG1ZKFAISF6M6Lj5JvRze8pB+LsMAZYPNfx30mXHffgQDmAsEGkx99B+nSSJ6G | ||
LOB+jY8a2Ny0e8qLNCub5gdac33oN8qzHnldcNTffuQWOA6pdWDo3Cg7C4L67updvQvx7zy9zg4f | ||
W1TZNxHkYwoq3QRz9RmjYulCuLD+V/EV4EsoekurxQ9Aq8s7wRcbH4dsHcIuDaHpNQobOOTI+bI4 | ||
424BtL7K667v1L67M49FDObv16ZpSbmcg5VT+Yj97JpMWIa6oQsrV+aURn+FG5YhHkD25FyVz7KZ | ||
W/460r9t1TQ= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# STRONGBOX ENCRYPTED RESOURCE ; See https://github.com/uw-labs/strongbox | ||
blWUTVRh4zO8PZ5AQw8OETzLfoaonYaow0YHjwa4OP27oaN3D7sGQYZEOjEdu44K++UTKophWmqj | ||
ccHBI9r5IoKk7WlfvvCoYYUtMi8KVMRghcz8putXvfnlAo1jCsqfOIuBtNBRLOjfF7cTwEjhSXG9 | ||
vCdQgkxnDRG1jisK+pGmiobnzQAfBENohesEEdRsS9dueWjH2Zp3zHotA8iq9XUA9auR7rFJ4cFk | ||
rKqkPzeGBd/UP9zG1ZKFAISF6M6Lj5JvRze8pB+LsMAZYPNfx30mXHffgQDmAsEGkx99B+nSSJ6G | ||
LOB+jY8a2Ny0e8qLNCub5gdac33oN8qzHnldcNTffuQWOA6pdWDo3Cg7C4L67updvQvx7zy9zg4f | ||
W1TZNxHkYwoq3QRz9RmjYulCuLD+V/EV4EsoekurxQ9Aq8s7wRcbH4dsHcIuDaHpNQobOOTI+bI4 | ||
424BtL7K667v1L67M49FDObv16ZpSbmcg5VT+Yj97JpMWIa6oQsrV+aURn+FG5YhHkD25FyVz7KZ | ||
W/460r9t1TQ= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package main | ||
|
||
|
||
var ( | ||
path = "/Users/dmitrijslapo/uw/strongbox/strongbox-test/files/" | ||
keyPath = "/Users/dmitrijslapo/uw/strongbox/strongbox-test/test-key" | ||
) | ||
|
||
func main() { | ||
// key, err := os.ReadFile(keyPath) | ||
// if err != nil { | ||
// log.Printf("Error reading file: %v\n", err) | ||
// return | ||
// } | ||
|
||
// keyBytes := []byte(key) // Convert key string into byte slice | ||
|
||
// // Decode the key | ||
// dk, err := strongbox.Decode([]byte(keyBytes)) | ||
// if err != nil { | ||
// log.Fatalf("Unable to decode given private key %v", err) | ||
// } | ||
|
||
// // Decrypt file(s) at the path provided | ||
// if err := strongbox.RecursiveDecrypt(path, dk); err != nil { | ||
// log.Fatalln(err) | ||
// } | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
RVsJd8mt7rl1s3EpMCr4ACwRpaSWyMJIRg4qlQpSJeI= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
package main | ||
|
||
import ( | ||
"errors" | ||
"flag" | ||
"fmt" | ||
"log" | ||
"os" | ||
"path/filepath" | ||
|
||
"github.com/uw-labs/strongbox/strongbox" | ||
) | ||
|
||
var ( | ||
version = "dev" | ||
commit = "none" | ||
date = "unknown" | ||
builtBy = "unknown" | ||
|
||
keyLoader = strongbox.Key | ||
kr *strongbox.FileKeyRing | ||
prefix = []byte("# STRONGBOX ENCRYPTED RESOURCE ;") | ||
defaultPrefix = []byte("# STRONGBOX ENCRYPTED RESOURCE ; See https://github.com/uw-labs/strongbox\n") | ||
|
||
errKeyNotFound = errors.New("key not found") | ||
|
||
// flags | ||
flagGitConfig = flag.Bool("git-config", false, "Configure git for strongbox use") | ||
flagGenKey = flag.String("gen-key", "", "Generate a new key and add it to your strongbox keyring") | ||
flagDecrypt = flag.Bool("decrypt", false, "Decrypt single resource") | ||
flagKey = flag.String("key", "", "Private key to use to decrypt") | ||
flagKeyRing = flag.String("keyring", "", "strongbox keyring file path, if not set default '$HOME/.strongbox_keyring' will be used") | ||
flagRecursive = flag.Bool("recursive", false, "Recursively decrypt all files under given folder, must be used with -decrypt flag") | ||
|
||
flagClean = flag.String("clean", "", "intended to be called internally by git") | ||
flagSmudge = flag.String("smudge", "", "intended to be called internally by git") | ||
flagDiff = flag.String("diff", "", "intended to be called internally by git") | ||
|
||
flagVersion = flag.Bool("version", false, "Strongbox version") | ||
) | ||
|
||
func usage() { | ||
fmt.Fprintf(os.Stderr, "Usage:\n\n") | ||
fmt.Fprintf(os.Stderr, "\tstrongbox -git-config\n") | ||
fmt.Fprintf(os.Stderr, "\tstrongbox [-keyring <keyring_file_path>] -gen-key key-name\n") | ||
fmt.Fprintf(os.Stderr, "\tstrongbox [-keyring <keyring_file_path>] -decrypt -recursive <path>\n") | ||
fmt.Fprintf(os.Stderr, "\tstrongbox -decrypt -recursive -key <key> <path>\n") | ||
fmt.Fprintf(os.Stderr, "\tstrongbox -decrypt -key <key>\n") | ||
fmt.Fprintf(os.Stderr, "\tstrongbox -version\n") | ||
fmt.Fprintf(os.Stderr, "\nif -keyring flag is not set default file '$HOME/.strongbox_keyring' or '$STRONGBOX_HOME/.strongbox_keyring' will be used as keyring\n") | ||
os.Exit(2) | ||
} | ||
|
||
func main() { | ||
log.SetPrefix("strongbox: ") | ||
log.SetFlags(log.LstdFlags | log.Lshortfile) | ||
|
||
flag.Usage = usage | ||
flag.Parse() | ||
|
||
if *flagVersion || (flag.NArg() == 1 && flag.Arg(0) == "version") { | ||
fmt.Printf("version=%s commit=%s date=%s builtBy=%s\n", version, commit, date, builtBy) | ||
return | ||
} | ||
|
||
if *flagGitConfig { | ||
strongbox.GitConfig() | ||
return | ||
} | ||
|
||
if *flagDiff != "" { | ||
strongbox.Diff(*flagDiff) | ||
return | ||
} | ||
|
||
// Set up keyring file name | ||
home := strongbox.DeriveHome() | ||
kr = strongbox.New(filepath.Join(home, ".strongbox_keyring")) | ||
|
||
// if keyring flag is set replace default keyRing | ||
if *flagKeyRing != "" { | ||
kr = strongbox.New(*flagKeyRing) | ||
// verify keyring is valid | ||
// if err := kr.Load(); err != nil { | ||
// log.Fatalf("unable to load keyring file:%s err:%s", *flagKeyRing, err) | ||
// } | ||
// TODO: verify the keyring file | ||
} | ||
|
||
if *flagGenKey != "" { | ||
strongbox.GenKey(kr, *flagGenKey) | ||
return | ||
} | ||
|
||
if *flagDecrypt { | ||
// handle recursive | ||
if *flagRecursive { | ||
var err error | ||
|
||
target := flag.Arg(0) | ||
if target == "" { | ||
target, err = os.Getwd() | ||
if err != nil { | ||
log.Fatalf("target path not provided and unable to get cwd err:%s", err) | ||
} | ||
} | ||
// for recursive decryption 'key' flag is optional but if provided | ||
// it should be valid and all encrypted file will be decrypted using it | ||
dk, err := strongbox.Decode([]byte(*flagKey)) | ||
if err != nil && *flagKey != "" { | ||
log.Fatalf("Unable to decode given private key %v", err) | ||
} | ||
|
||
if err = strongbox.RecursiveDecrypt(kr, target, dk); err != nil { | ||
log.Fatalln(err) | ||
} | ||
return | ||
} | ||
|
||
if *flagKey == "" { | ||
log.Fatalf("Must provide a `-key` when using -decrypt") | ||
} | ||
strongbox.DecryptCLI(*flagKey) | ||
return | ||
} | ||
|
||
if *flagRecursive { | ||
log.Println("-recursive flag is only supported with -decrypt") | ||
usage() | ||
} | ||
|
||
if *flagClean != "" { | ||
strongbox.Clean(kr, os.Stdin, os.Stdout, *flagClean) | ||
return | ||
} | ||
if *flagSmudge != "" { | ||
strongbox.Smudge(kr, os.Stdin, os.Stdout, *flagSmudge) | ||
return | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module main.go | ||
|
||
go 1.21 | ||
|
||
require github.com/uw-labs/strongbox/internal/strongbox v1.1.0 | ||
|
||
require ( | ||
github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= | ||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | ||
github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115 h1:YuDUUFNM21CAbyPOpOP8BicaTD/0klJEKt5p8yuw+uY= | ||
github.com/jacobsa/crypto v0.0.0-20190317225127-9f44e2d11115/go.mod h1:LadVJg0XuawGk+8L1rYnIED8451UyNxEMdTWCEt5kmU= | ||
github.com/jacobsa/oglematchers v0.0.0-20150720000706-141901ea67cd h1:9GCSedGjMcLZCrusBZuo4tyKLpKUPenUUqi34AkuFmA= | ||
github.com/jacobsa/oglematchers v0.0.0-20150720000706-141901ea67cd/go.mod h1:TlmyIZDpGmwRoTWiakdr+HA1Tukze6C6XbRVidYq02M= | ||
github.com/jacobsa/oglemock v0.0.0-20150831005832-e94d794d06ff h1:2xRHTvkpJ5zJmglXLRqHiZQNjUoOkhUyhTAhEQvPAWw= | ||
github.com/jacobsa/oglemock v0.0.0-20150831005832-e94d794d06ff/go.mod h1:gJWba/XXGl0UoOmBQKRWCJdHrr3nE0T65t6ioaj3mLI= | ||
github.com/jacobsa/ogletest v0.0.0-20170503003838-80d50a735a11 h1:BMb8s3ENQLt5ulwVIHVDWFHp8eIXmbfSExkvdn9qMXI= | ||
github.com/jacobsa/ogletest v0.0.0-20170503003838-80d50a735a11/go.mod h1:+DBdDyfoO2McrOyDemRBq0q9CMEByef7sYl7JH5Q3BI= | ||
github.com/jacobsa/reqtrace v0.0.0-20150505043853-245c9e0234cb h1:uSWBjJdMf47kQlXMwWEfmc864bA1wAC+Kl3ApryuG9Y= | ||
github.com/jacobsa/reqtrace v0.0.0-20150505043853-245c9e0234cb/go.mod h1:ivcmUvxXWjb27NsPEaiYK7AidlZXS7oQ5PowUS9z3I4= | ||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= | ||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | ||
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= | ||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= | ||
github.com/uw-labs/strongbox v1.1.0 h1:gIFhB+YFkY4wbD6ZU4/nZI26d1O6/TnSPg2ADJTV8Z4= | ||
github.com/uw-labs/strongbox v1.1.0/go.mod h1:MeDTE5Nj3SAPmhZXuqju0KcZWJW3D1HPmU14buyWgqU= | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d h1:20cMwl2fHAzkJMEA+8J4JgqBQcQGzbisXo31MIeenXI= | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= | ||
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package main | ||
|
||
import ( | ||
"log" | ||
"os" | ||
|
||
"github.com/uw-labs/strongbox/internal/strongbox" | ||
) | ||
|
||
var ( | ||
path = "" // Path to encrypted file or directory containing encrypted files | ||
keyPath = "" // Path to strongbox key | ||
) | ||
|
||
func main() { | ||
key, err := os.ReadFile(keyPath) | ||
if err != nil { | ||
log.Printf("Error reading file: %v\n", err) | ||
return | ||
} | ||
|
||
keyBytes := []byte(key) // Convert key string into byte slice | ||
|
||
// Decode the key | ||
dk, err := strongbox.Decode([]byte(keyBytes)) | ||
if err != nil { | ||
log.Fatalf("Unable to decode given private key %v", err) | ||
} | ||
|
||
// Decrypt file(s) at the path provided | ||
if err := strongbox.RecursiveDecrypt(path, dk); err != nil { | ||
log.Fatalln(err) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.19-alpine | ||
FROM golang:1.21-alpine | ||
|
||
RUN apk --no-cache add git | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.