Use vendoring
This commit is contained in:
parent
185262b2e7
commit
d4fd18bff3
20 changed files with 3023 additions and 0 deletions
42
vendor/github.com/nyarla/go-crypt/README.md
generated
vendored
Normal file
42
vendor/github.com/nyarla/go-crypt/README.md
generated
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
crypt
|
||||
=====
|
||||
|
||||
A golang implementation of crypt(3).
|
||||
|
||||
|
||||
[](https://travis-ci.org/nyarla/go-crypt) [](https://godoc.org/github.com/nyarla/go-crypt)
|
||||
|
||||
EXAMPLES CODE
|
||||
-------------
|
||||
|
||||
```go
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/nyarlabo/go-crypt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println(crypt.Crypt("testtest", "es")); // esDRYJnY4VaGM
|
||||
}
|
||||
```
|
||||
|
||||
WHY I FROKED IT?
|
||||
----------------
|
||||
|
||||
Original implementation is writte by iasija at 2009-12-08,
|
||||
and original implementation is not supported golang 1.1 or later.
|
||||
|
||||
So I fork it for fix this issue, and I added documenation and test code.
|
||||
|
||||
Original implementation is hosting on [code.google.com/p/go-crypt](https://code.google.com/p/go-crypt),
|
||||
and that source code is under the 3-Clause BSD.
|
||||
|
||||
NOTE: I could't find to iasija's contact address.
|
||||
|
||||
COPYRIGTS AND LICENSE
|
||||
---------------------
|
||||
|
||||
1. Original Implementation: Copyright (c) 2009 iasija All Rights Reserved. ([BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause))
|
||||
2. Modification Codes: Copyright (c) 22013-2015 Naoki OKAMURA a.k.a nyarla <nyarla@thotep.net> Some Rights Reserved. ([BSD-3-Clause](http://opensource.org/licenses/BSD-3-Clause))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue