mse: Remove unused function

This commit is contained in:
Matt Joiner 2017-09-12 19:30:05 +10:00
parent 16433297d7
commit 98eac5343e
1 changed files with 0 additions and 10 deletions

View File

@ -130,16 +130,6 @@ func (cr *cipherWriter) Write(b []byte) (n int, err error) {
return
}
func readY(r io.Reader) (y big.Int, err error) {
var b [96]byte
_, err = io.ReadFull(r, b[:])
if err != nil {
return
}
y.SetBytes(b[:])
return
}
func newX() big.Int {
var X big.Int
X.SetBytes(func() []byte {