64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
package sha512
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"crypto"
 | 
						|
	"encoding/gob"
 | 
						|
 | 
						|
	"github.com/stevvooe/resumable"
 | 
						|
 | 
						|
	// import to ensure that our init function runs after the standard package
 | 
						|
	_ "crypto/sha512"
 | 
						|
)
 | 
						|
 | 
						|
// Len returns the number of bytes which have been written to the digest.
 | 
						|
func (d *digest) Len() int64 {
 | 
						|
	return int64(d.len)
 | 
						|
}
 | 
						|
 | 
						|
// State returns a snapshot of the state of the digest.
 | 
						|
func (d *digest) State() ([]byte, error) {
 | 
						|
	var buf bytes.Buffer
 | 
						|
	encoder := gob.NewEncoder(&buf)
 | 
						|
 | 
						|
	// We encode this way so that we do not have
 | 
						|
	// to export these fields of the digest struct.
 | 
						|
	vals := []interface{}{
 | 
						|
		d.h, d.x, d.nx, d.len, d.function,
 | 
						|
	}
 | 
						|
 | 
						|
	for _, val := range vals {
 | 
						|
		if err := encoder.Encode(val); err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return buf.Bytes(), nil
 | 
						|
}
 | 
						|
 | 
						|
// Restore resets the digest to the given state.
 | 
						|
func (d *digest) Restore(state []byte) error {
 | 
						|
	decoder := gob.NewDecoder(bytes.NewReader(state))
 | 
						|
 | 
						|
	// We decode this way so that we do not have
 | 
						|
	// to export these fields of the digest struct.
 | 
						|
	vals := []interface{}{
 | 
						|
		&d.h, &d.x, &d.nx, &d.len, &d.function,
 | 
						|
	}
 | 
						|
 | 
						|
	for _, val := range vals {
 | 
						|
		if err := decoder.Decode(val); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	switch d.function {
 | 
						|
	case crypto.SHA384, crypto.SHA512, crypto.SHA512_224, crypto.SHA512_256:
 | 
						|
		break
 | 
						|
	default:
 | 
						|
		return resumable.ErrBadState
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |