|
| 1 | +package main |
| 2 | + |
| 3 | +import ( |
| 4 | + "encoding/hex" |
| 5 | + "fmt" |
| 6 | + "log" |
| 7 | +) |
| 8 | + |
| 9 | +//import "encoding/hex" |
| 10 | + |
| 11 | +const ( |
| 12 | + input = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d" |
| 13 | + expected = "SSdtIGtpbGxpbmcgeW91ciBicmFpbiBsaWtlIGEgcG9pc29ub3VzIG11c2hyb29t" |
| 14 | + inputWiki = "Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure." |
| 15 | + expectedWiki = "TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlzIHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2YgdGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGludWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRoZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=" |
| 16 | + encodeStd = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" |
| 17 | +) |
| 18 | + |
| 19 | +func base64(c byte) byte { |
| 20 | + return encodeStd[c] |
| 21 | +} |
| 22 | + |
| 23 | +func encode(input []byte) []byte { |
| 24 | + decoded := input |
| 25 | + // Pad with 0 bytes |
| 26 | + for len(decoded)%3 != 0 { |
| 27 | + decoded = append(decoded, 0) |
| 28 | + } |
| 29 | + |
| 30 | + var result []byte |
| 31 | + for i := 0; i < len(decoded)/3; i++ { |
| 32 | + current := uint32(decoded[3*i]) << 16 |
| 33 | + current |= uint32(decoded[3*i+1]) << 8 |
| 34 | + current |= uint32(decoded[3*i+2]) |
| 35 | + for b := 3; b >= 0; b-- { |
| 36 | + shiftBy := 6 * b |
| 37 | + mask := uint32(63) << shiftBy |
| 38 | + r := byte((current & mask) >> shiftBy) |
| 39 | + result = append(result, base64(r)) |
| 40 | + } |
| 41 | + } |
| 42 | + fillBytes := len(decoded) - len(input) |
| 43 | + for i := 0; i < fillBytes; i++ { |
| 44 | + result[len(result)-1-i] = '=' |
| 45 | + } |
| 46 | + return result |
| 47 | +} |
| 48 | + |
| 49 | +func main() { |
| 50 | + decoded, _ := hex.DecodeString(input) |
| 51 | + result := encode(decoded) |
| 52 | + resultWikipedia := encode([]byte(inputWiki)) |
| 53 | + if string(resultWikipedia) != expectedWiki { |
| 54 | + log.Fatal("Not equal wikipedia!") |
| 55 | + } else { |
| 56 | + fmt.Println("Yeah!") |
| 57 | + } |
| 58 | + if string(result) != expected { |
| 59 | + log.Fatal("Not equal!") |
| 60 | + } else { |
| 61 | + fmt.Println("Yeah!", string(decoded)) |
| 62 | + } |
| 63 | +} |
0 commit comments