aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/key_store_passphrase.go
Commit message (Collapse)AuthorAgeFilesLines
* Improve key store passphrase cryptoGustav Simonsson2015-05-121-21/+28
| | | | | | | * Change MAC-then-Encrypt to Encrypt-then-MAC * Change AES256 to AES128 * Use first 16 bytes of KDF derived key for AES and remaining 16 for MAC
* Remove the awesome, ever misunderstood entropy mixingGustav Simonsson2015-05-121-2/+2
|
* replaced several path.* with filepath.* which is platform independentBas van Kervel2015-05-121-2/+2
|
* crypto: switch to golang.org/x/cryptoFelix Lange2015-02-171-3/+5
| | | | | code.google.com/p/go.crypto is deprecated and will cause problems in future versions of Go.
* Set both key generation and ECDSA nonce to use mixed entropyGustav Simonsson2015-02-111-12/+3
| | | | | | * Move random entropy functions to new package randentropy * Add function to get n bytes entropy where up to first 32 bytes are mixed with OS entropy sources
* Address pull request commentsGustav Simonsson2015-01-281-3/+3
| | | | | | | | | * Use crypto.Sign instead of directly calling secp256k1 lib * Rename UserAccount to Account and Addr to Address (for consistency) * Change AccountManager.Sign to take ptr to Account instead of address byte array * Simplify copying of Accounts in Accounts() * PubkeyToAddress and GetEntropyCSPRNG now exported
* Add accounts package and refactor key storesGustav Simonsson2015-01-261-17/+23
| | | | | | | | * Add initial UserAccount and AccountManager structs * Add NewAccount, Sign and Accounts functions * Refactor key stores to use key address as main identifier while keeping the UUID. * Use key address as file/dir names instead of UUID
* CamelCase aesCBCDecryptGustav Simonsson2015-01-221-1/+1
|
* Add ImportPreSaleKeyGustav Simonsson2015-01-211-45/+1
| | | | | | * ImportPreSaleKey takes a KeyStore, a presale key JSON (e.g. file content) and a password string. It stores the key in the given key store. * Refactored common AES decryption and moved some functions to crypto.go
* Address pull request commentsGustav Simonsson2015-01-201-6/+3
| | | | | * Further simplify "constructor" function's allocation of structs * Fix formatting
* Address pull request commentsGustav Simonsson2015-01-201-5/+7
| | | | | * Allocate with composite literal instead of new * Remove check of number of bytes read from rand
* Update code commentsGustav Simonsson2015-01-161-6/+4
|
* Address pull request commentsGustav Simonsson2015-01-161-40/+35
| | | | | | | | * Remove flags field from key struct * Change JSON struct fields from string to []byte * Change GenerateNewKey API to take io.Reader for random source * Remove mixing entropy source function * Use testing Fatal in tests
* Address pull request commentsGustav Simonsson2015-01-161-0/+253
* Simplify scrypt constants with const block * Add key store constructors and make their types private * Simplify key store and file namings to be less Java Enterpriseā„¢ * Change test error logging to use t.Error(err) * Reduce number of naked returns (just like my ex-gf) * Simplify file reading path code