mirror of https://gogs.blitter.com/RLabs/xs
client-side read for HKEx PeerD as part of NewHKEx()
This commit is contained in:
parent
c8b4fa3596
commit
4dd121b10b
BIN
demo/client
BIN
demo/client
Binary file not shown.
|
@ -1,7 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
|
||||||
|
@ -17,8 +16,8 @@ func main() {
|
||||||
conn := hkex.NewHKExConn(&bareconn)
|
conn := hkex.NewHKExConn(&bareconn)
|
||||||
fmt.Printf("conn: %v\n", conn)
|
fmt.Printf("conn: %v\n", conn)
|
||||||
|
|
||||||
fmt.Fprintf(conn, "GET / HTTP/1.0\r\n\r\n")
|
// fmt.Fprintf(conn, "GET / HTTP/1.0\r\n\r\n")
|
||||||
// status, err := bufio.NewReader(conn).ReadString('\n')
|
// status, err := bufio.NewReader(conn).ReadString('\n')
|
||||||
_, err = bufio.NewReader(conn).ReadString('\n')
|
// _, err = bufio.NewReader(conn).ReadString('\n')
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,10 +35,22 @@ type HerraduraKEx struct {
|
||||||
fa *big.Int
|
fa *big.Int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//// Returns a new HerraduraKEx struct with default intSz,pubSz
|
||||||
|
//func New() (h *HerraduraKEx) {
|
||||||
|
// return New(256, 64)
|
||||||
|
//}
|
||||||
|
|
||||||
// Returns a new HerraduraKEx struct
|
// Returns a new HerraduraKEx struct
|
||||||
func New(i int, p int) (h *HerraduraKEx) {
|
func New(i int, p int) (h *HerraduraKEx) {
|
||||||
h = new(HerraduraKEx)
|
h = new(HerraduraKEx)
|
||||||
|
|
||||||
|
if i == 0 {
|
||||||
|
i = 256
|
||||||
|
}
|
||||||
|
if p == 0 {
|
||||||
|
p = 64
|
||||||
|
}
|
||||||
|
|
||||||
h.intSz = i
|
h.intSz = i
|
||||||
h.pubSz = p
|
h.pubSz = p
|
||||||
|
|
||||||
|
@ -133,19 +145,31 @@ func (h *HerraduraKEx) String() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
type HKExConn struct {
|
type HKExConn struct {
|
||||||
c net.Conn
|
c net.Conn // which also implements io.Reader, io.Writer, ...
|
||||||
|
h *HerraduraKEx
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return c coerced into a HKExConn (which implements interface net.Conn)
|
// Return c coerced into a HKExConn (which implements interface net.Conn)
|
||||||
func NewHKExConn(c *net.Conn) (hc *HKExConn) {
|
func NewHKExConn(c *net.Conn) (hc *HKExConn) {
|
||||||
fmt.Println("** NewHKExConn wrapping net.Conn **")
|
//fmt.Println("** NewHKExConn wrapping net.Conn **")
|
||||||
return &HKExConn{*c}
|
hc = new(HKExConn)
|
||||||
|
|
||||||
|
hc.c = *c
|
||||||
|
hc.h = New(0,0)
|
||||||
|
d := big.NewInt(0)
|
||||||
|
_,err := fmt.Fscanln(hc.c, d)
|
||||||
|
if err != nil {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
hc.h.PeerD = d
|
||||||
|
fmt.Printf("** peerD:%s\n", hc.h.PeerD.Text(16))
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (hc HKExConn) Read(b []byte) (n int, err error) {
|
func (hc HKExConn) Read(b []byte) (n int, err error) {
|
||||||
n, err = hc.c.Read(b)
|
n, err = hc.c.Read(b)
|
||||||
if n > 0 {
|
if n > 0 {
|
||||||
fmt.Println("** hc.Read() wraps c.Read() **")
|
//fmt.Println("** hc.Read() wraps c.Read() **")
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -153,7 +177,7 @@ func (hc HKExConn) Read(b []byte) (n int, err error) {
|
||||||
func (hc HKExConn) Write(b []byte) (n int, err error) {
|
func (hc HKExConn) Write(b []byte) (n int, err error) {
|
||||||
n, err = hc.c.Write(b)
|
n, err = hc.c.Write(b)
|
||||||
if n > 0 {
|
if n > 0 {
|
||||||
fmt.Printf("** hc.Write('%s') wraps c.Write() **\n", b)
|
//fmt.Printf("** hc.Write('%s') wraps c.Write() **\n", b)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue