I hereby claim:
- I am marete on github.
- I am bgmarete (https://keybase.io/bgmarete) on keybase.
- I have a public key ASD6diZKS2hV0r4abtB3mGgvewKd4j9XZrf5n1Mhf6LtkAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| trap "echo '*** Last command failed'; exit 1" ERR INT TERM QUIT | |
| COUNT=0 | |
| for Z in 0 6; do | |
| for COMPRESSION_ALGO in Uncompressed ZIP ZLIB BZIP2; do | |
| for CIPHER in IDEA 3DES CAST5 BLOWFISH AES AES192 AES256 TWOFISH CAMELLIA128 CAMELLIA192 CAMELLIA256; do | |
| for HASH in MD5 SHA1 RIPEMD160 SHA256 SHA384 SHA512 SHA224; do |
| SIGABRT: abort | |
| PC=0x437102 | |
| goroutine 1 [running]: | |
| runtime.memclr(0xc2080367d0, 0x50) | |
| /tmp/go-fuzz-build851796584/src/runtime/memclr_amd64.s:97 +0x162 fp=0xc20805c738 sp=0xc20805c730 | |
| runtime.mallocgc(0x50, 0x5fa140, 0x760610b400000001, 0x472e0c) | |
| /tmp/go-fuzz-build851796584/src/runtime/malloc.go:190 +0x92b fp=0xc20805c7e8 sp=0xc20805c738 | |
| runtime.newobject(0x5fa140, 0x8) | |
| /tmp/go-fuzz-build851796584/src/runtime/malloc.go:353 +0x49 fp=0xc20805c810 sp=0xc20805c7e8 |
| package main | |
| import ( | |
| "flag" | |
| "io" | |
| "os" | |
| ) | |
| const blockSize = 70 << 10 |
| package main | |
| import ( | |
| _ "code.google.com/p/go.crypto/md4" | |
| "code.google.com/p/go.crypto/openpgp" | |
| _ "code.google.com/p/go.crypto/ripemd160" | |
| _ "crypto/md5" | |
| _ "crypto/sha1" | |
| _ "crypto/sha256" | |
| _ "crypto/sha512" |
| symmetric-encrypt | |
| package main | |
| import ( | |
| "code.google.com/p/go.crypto/openpgp" | |
| "errors" | |
| "io" | |
| "log" | |
| "os" | |
| ) |
| package main | |
| import ( | |
| "code.google.com/p/go.crypto/ssh" | |
| "crypto" | |
| "crypto/rsa" | |
| "crypto/x509" | |
| "encoding/pem" | |
| //"fmt" | |
| "io" |
| package main | |
| import "net/http" | |
| import "io" | |
| import "runtime" | |
| import "log" | |
| type authHandler func(http.ResponseWriter, *http.Request) | |
| func allowed(r *http.Request) bool { |
| package main | |
| import "github.com/marete/rfc868" | |
| import "time" | |
| import "fmt" | |
| import "runtime" | |
| import "log" | |
| const iterations = 1000000 | |
| const con = 10 // concurrency |