# Packages
Package abi implements the Ethereum ABI (Application Binary Interface).
# Functions
DecryptKey decrypts a key from a json blob, returning the private key itself.
EncryptKey encrypts a key using the specified scrypt parameters into a json blob that can be decrypted later on.
NewKeyForDirectICAP generates a key whose address fits into < 155 bits so it can fit into the Direct ICAP spec.
NewManager creates a manager for the given directory.
NewPlaintextManager creates a manager for the given directory.
# Constants
LightScryptN is the N parameter of Scrypt encryption algorithm, using 4MB memory and taking approximately 100ms CPU time on a modern processor.
LightScryptP is the P parameter of Scrypt encryption algorithm, using 4MB memory and taking approximately 100ms CPU time on a modern processor.
StandardScryptN is the N parameter of Scrypt encryption algorithm, using 256MB memory and taking approximately 1s CPU time on a modern processor.
StandardScryptP is the P parameter of Scrypt encryption algorithm, using 256MB memory and taking approximately 1s CPU time on a modern processor.
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
Account represents a stored key.
AmbiguousAddrError is returned when attempting to unlock an address for which more than one file exists.
No description provided by the author
Manager manages a key storage directory on disk.