Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 1 | Test case base64_encode #1 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 2 | base64_encode:"":"":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 3 | |
| 4 | Test case base64_encode #2 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 5 | base64_encode:"f":"Zg==":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 6 | |
| 7 | Test case base64_encode #3 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 8 | base64_encode:"fo":"Zm8=":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 9 | |
| 10 | Test case base64_encode #4 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 11 | base64_encode:"foo":"Zm9v":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 12 | |
| 13 | Test case base64_encode #5 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 14 | base64_encode:"foob":"Zm9vYg==":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 15 | |
| 16 | Test case base64_encode #6 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 17 | base64_encode:"fooba":"Zm9vYmE=":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 18 | |
| 19 | Test case base64_encode #7 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 20 | base64_encode:"foobar":"Zm9vYmFy":1000:0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 21 | |
| 22 | Test case base64_decode #1 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 23 | base64_decode:"":"":0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 24 | |
| 25 | Test case base64_decode #2 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 26 | base64_decode:"Zg==":"f":0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 27 | |
| 28 | Test case base64_decode #3 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 29 | base64_decode:"Zm8=":"fo":0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 30 | |
| 31 | Test case base64_decode #4 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 32 | base64_decode:"Zm9v":"foo":0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 33 | |
| 34 | Test case base64_decode #5 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 35 | base64_decode:"Zm9vYg==":"foob":0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 36 | |
| 37 | Test case base64_decode #6 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 38 | base64_decode:"Zm9vYmE=":"fooba":0 |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 39 | |
| 40 | Test case base64_decode #7 |
Paul Bakker | 5946fd9 | 2009-07-11 15:29:30 +0000 | [diff] [blame] | 41 | base64_decode:"Zm9vYmFy":"foobar":0 |
| 42 | |
| 43 | Base64 encode (buffer size just right) |
| 44 | base64_encode:"foobar":"Zm9vYmFy":9:0 |
| 45 | |
| 46 | Base64 encode (buffer size too small) |
| 47 | base64_encode:"foobar":"":8:POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL |
| 48 | |
| 49 | Base64 decode (Illegal character) |
| 50 | base64_decode:"zm#=":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 51 | |
| 52 | Base64 decode (Too much equal signs) |
| 53 | base64_decode:"zm===":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 54 | |
| 55 | Base64 decode (Invalid char after equal signs) |
| 56 | base64_decode:"zm=masd":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
Paul Bakker | 3d36082 | 2009-07-05 11:29:38 +0000 | [diff] [blame] | 57 | |
Manuel Pégourié-Gonnard | 64938c6 | 2014-10-15 21:45:39 +0200 | [diff] [blame^] | 58 | Base64 decode (Space inside string) |
| 59 | base64_decode:"zm masd":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 60 | |
| 61 | Base64 decode "Zm9vYmFy" (no newline nor '\0' at end) |
| 62 | base64_decode_hex_src:"5a6d3976596d4679":"foobar":0 |
| 63 | |
| 64 | Base64 decode "Zm9vYmFy\n" (LF at end) |
| 65 | base64_decode_hex_src:"5a6d3976596d46790a":"foobar":0 |
| 66 | |
| 67 | Base64 decode "Zm9vYmFy\r\n" (CRLF at end) |
| 68 | base64_decode_hex_src:"5a6d3976596d46790d0a":"foobar":0 |
| 69 | |
| 70 | Base64 decode "Zm9vYmFy\r" (CR at end) |
| 71 | base64_decode_hex_src:"5a6d3976596d46790d":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 72 | |
| 73 | Base64 decode "Zm9vYmFy " (SP at end) |
| 74 | base64_decode_hex_src:"5a6d3976596d467920":"foobar":0 |
| 75 | |
| 76 | Base64 decode "Zm9vYmFy \n" (SP+LF at end) |
| 77 | base64_decode_hex_src:"5a6d3976596d4679200a":"foobar":0 |
| 78 | |
| 79 | Base64 decode "Zm9vYmFy \r\n" (SP+CRLF at end) |
| 80 | base64_decode_hex_src:"5a6d3976596d4679200d0a":"foobar":0 |
| 81 | |
| 82 | Base64 decode "Zm9vYmFy \r" (SP+CR at end) |
| 83 | base64_decode_hex_src:"5a6d3976596d4679200d":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 84 | |
| 85 | Base64 decode "Zm9vYmFy " (2SP at end) |
| 86 | base64_decode_hex_src:"5a6d3976596d46792020":"foobar":0 |
| 87 | |
| 88 | Base64 decode "Zm9vYmFy \n" (2SP+LF at end) |
| 89 | base64_decode_hex_src:"5a6d3976596d467920200a":"foobar":0 |
| 90 | |
| 91 | Base64 decode "Zm9vYmFy \r\n" (2SP+CRLF at end) |
| 92 | base64_decode_hex_src:"5a6d3976596d467920200d0a":"foobar":0 |
| 93 | |
| 94 | Base64 decode "Zm9vYmFy \r" (2SP+CR at end) |
| 95 | base64_decode_hex_src:"5a6d3976596d467920200d":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 96 | |
| 97 | Base64 decode "Zm9vYmF\ny" (LF inside) |
| 98 | base64_decode_hex_src:"5a6d3976596d460a79":"foobar":0 |
| 99 | |
| 100 | Base64 decode "Zm9vYmF\ry" (CRLF inside) |
| 101 | base64_decode_hex_src:"5a6d3976596d460d0a79":"foobar":0 |
| 102 | |
| 103 | Base64 decode "Zm9vYmF\ry" (CR inside) |
| 104 | base64_decode_hex_src:"5a6d3976596d460d79":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 105 | |
| 106 | Base64 decode "Zm9vYmF y" (SP inside) |
| 107 | base64_decode_hex_src:"5a6d3976596d462079":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 108 | |
| 109 | Base64 decode "Zm9vYmF \ny" (SP+LF inside) |
| 110 | base64_decode_hex_src:"5a6d3976596d46200a79":"foobar":0 |
| 111 | |
| 112 | Base64 decode "Zm9vYmF \ry" (SP+CRLF inside) |
| 113 | base64_decode_hex_src:"5a6d3976596d46200d0a79":"foobar":0 |
| 114 | |
| 115 | Base64 decode "Zm9vYmF \ry" (SP+CR inside) |
| 116 | base64_decode_hex_src:"5a6d3976596d46200d79":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 117 | |
| 118 | Base64 decode "Zm9vYmF y" (2SP inside) |
| 119 | base64_decode_hex_src:"5a6d3976596d46202079":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 120 | |
| 121 | Base64 decode "Zm9vYmF \ny" (2SP+LF inside) |
| 122 | base64_decode_hex_src:"5a6d3976596d4620200a79":"foobar":0 |
| 123 | |
| 124 | Base64 decode "Zm9vYmF \ry" (2SP+CRLF inside) |
| 125 | base64_decode_hex_src:"5a6d3976596d4620200d0a79":"foobar":0 |
| 126 | |
| 127 | Base64 decode "Zm9vYmF \ry" (2SP+CR inside) |
| 128 | base64_decode_hex_src:"5a6d3976596d4620200d79":"":POLARSSL_ERR_BASE64_INVALID_CHARACTER |
| 129 | |
Paul Bakker | d598318 | 2014-07-04 13:50:31 +0200 | [diff] [blame] | 130 | Base64 encode hex #1 |
| 131 | base64_encode_hex:"010203040506070809":"AQIDBAUGBwgJ":13:0 |
| 132 | |
| 133 | Base64 encode hex #2 (buffer too small) |
| 134 | base64_encode_hex:"010203040506070809":"AQIDBAUGBwgJ":12:POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL |
| 135 | |
| 136 | Base64 encode hex #3 |
| 137 | base64_encode_hex:"0102030405060708":"AQIDBAUGBwg=":13:0 |
| 138 | |
| 139 | Base64 encode hex #4 |
| 140 | base64_encode_hex:"01020304050607":"AQIDBAUGBw==":13:0 |
| 141 | |
| 142 | Base64 decode hex #1 |
| 143 | base64_decode_hex:"AQIDBAUGBwgJ":"010203040506070809":9:0 |
| 144 | |
| 145 | Base64 decode hex #2 (buffer too small) |
| 146 | base64_decode_hex:"AQIDBAUGBwgJ":"010203040506070809":8:POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL |
| 147 | |
| 148 | Base64 decode hex #3 |
| 149 | base64_decode_hex:"AQIDBAUGBwg=":"0102030405060708":8:0 |
| 150 | |
| 151 | Base64 decode hex #4 |
| 152 | base64_decode_hex:"AQIDBAUGBw==":"01020304050607":7:0 |
| 153 | |
| 154 | Base64 decode hex #5 (buffer too small) |
| 155 | base64_decode_hex:"AQIDBAUGBw==":"01020304050607":6:POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL |
| 156 | |
Paul Bakker | 3d36082 | 2009-07-05 11:29:38 +0000 | [diff] [blame] | 157 | Base64 Selftest |
Paul Bakker | 335db3f | 2011-04-25 15:28:35 +0000 | [diff] [blame] | 158 | depends_on:POLARSSL_SELF_TEST |
Paul Bakker | 3d36082 | 2009-07-05 11:29:38 +0000 | [diff] [blame] | 159 | base64_selftest: |
Manuel Pégourié-Gonnard | 64938c6 | 2014-10-15 21:45:39 +0200 | [diff] [blame^] | 160 | |