xs/demo/client.go

28 lines
743 B
Go
Raw Normal View History

2018-01-06 15:30:56 +00:00
package main
import (
"fmt"
2018-01-06 20:26:08 +00:00
hkex "blitter.com/herradurakex"
2018-01-06 15:30:56 +00:00
)
2018-01-09 03:16:55 +00:00
// Demo of a simple client that dials up to a simple test server to
// send data.
// Note this code is identical to standard tcp client code, save for
// declaring a 'hkex' rather than a 'net' Dialer Conn. The KEx and
// encrypt/decrypt is done within the type.
// Compare to 'clientp.go' in this directory to see the equivalence.
2018-01-06 15:30:56 +00:00
func main() {
conn, err := hkex.Dial("tcp", "localhost:2000", "C_TWOFISH_128")
2018-01-06 15:30:56 +00:00
if err != nil {
// handle error
fmt.Println("Err!")
2018-01-06 15:30:56 +00:00
}
fmt.Fprintf(conn, "\x01\x02\x03\x04")
//fmt.Fprintf(conn, "GET / HTTP/1.0\r\n\r\n")
//status, err := bufio.NewReader(conn).ReadString('\n')
//_, err = bufio.NewReader(conn).ReadString('\n')
2018-01-06 15:30:56 +00:00
// ...
2018-01-06 15:30:56 +00:00
}