(b *bytes.Reader, n int)
| 380 | } |
| 381 | |
| 382 | func GenBytes(b *bytes.Reader, n int) []byte { |
| 383 | bytes := make([]byte, n) |
| 384 | for i := range bytes { |
| 385 | bytes[i] = GenByte(b) |
| 386 | } |
| 387 | return bytes |
| 388 | } |
| 389 | |
| 390 | func GenAscii(b *bytes.Reader) string { |
| 391 | var bytes []byte |