diff options
author | Yawning Angel <yawning@torproject.org> | 2014-08-18 11:54:39 +0000 |
---|---|---|
committer | Yawning Angel <yawning@torproject.org> | 2014-08-18 11:54:39 +0000 |
commit | f32f01ba01351c2cca26be3a62a9c2aa395ee433 (patch) | |
tree | 1cdfec1abe5951ba1e52e2cfa3d314f6a78faa78 | |
parent | 22c9dc3f489dd0984e431ede95f963bc1f57222c (diff) |
Change the drbg seed field in the state file.
Changing from "drbgSeed" to "drbg-seed" to be consistent with the
ServerTransportOptions to allow for easier copy/paste.
-rw-r--r-- | transports/obfs4/statefile.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transports/obfs4/statefile.go b/transports/obfs4/statefile.go index 814a545..e727f7d 100644 --- a/transports/obfs4/statefile.go +++ b/transports/obfs4/statefile.go @@ -49,7 +49,7 @@ type jsonServerState struct { NodeID string `json:"node-id"` PrivateKey string `json:"private-key"` PublicKey string `json:"public-key"` - DrbgSeed string `json:"drbgSeed"` + DrbgSeed string `json:"drbg-seed"` } type obfs4ServerState struct { |