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() {
|
2018-01-12 03:42:42 +00:00
|
|
|
conn, err := hkex.Dial("tcp", "localhost:2000", "C_TWOFISH_128")
|
2018-01-06 15:30:56 +00:00
|
|
|
if err != nil {
|
|
|
|
// handle error
|
2018-01-08 06:05:14 +00:00
|
|
|
fmt.Println("Err!")
|
2018-01-06 15:30:56 +00:00
|
|
|
}
|
2018-01-08 06:05:14 +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-08 06:05:14 +00:00
|
|
|
|
2018-01-06 15:30:56 +00:00
|
|
|
}
|