1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
#|
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
**** base64 ********************************************************************
Copyright Volker van Nek, 2013 - 2015
base64 returns a base 64 representation of a string, a non-negative integer
or a list of octets.
base64_decode decodes a base 64 string. The default return value is a string.
An optional argument allows base64_decode to return the corresponding number
or list of octets.
(%i1) base64: base64("foo bar baz");
(%o1) Zm9vIGJhciBiYXo=
(%i2) string: base64_decode(base64);
(%o2) foo bar baz
(%i3) obase: 16.$
(%i4) integer: base64_decode(base64, 'number);
(%o4) 666f6f206261722062617a
(%i5) octets: base64_decode(base64, 'list);
(%o5) [66, 6F, 6F, 20, 62, 61, 72, 20, 62, 61, 7A]
Note that if the string contains umlauts the base64 string is platform
dependent. But in every case the decoded string is equal to the original.
|#
(in-package :maxima)
(eval-when
(:compile-toplevel :execute)
(defvar old-ibase-base64 *read-base*)
(setq *read-base* 10.) )
(defvar *str64* "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/")
;; encode : 0 (6bit) --> base64 = *chr64*[0] = 'A' = 65 : number --> character
(defvar *chr64* (make-array 64. :element-type 'character :initial-element #\0))
(do ((i 0 (1+ i)) (ch (coerce *str64* 'list) (cdr ch)))
((= i 64.))
(setf (char *chr64* i) (car ch)) )
;; decode : 'A' = 65 --> *num64*[65] = 0 (6bit) : character --> number
;; range of *num64* : '+' = 43 ... 'z' = 122
(defvar *num64* (make-array 123. :element-type 'integer :initial-element -1))
(do ((i 0 (1+ i)))
((= i 64.))
(setf (svref *num64* (char-code (char *chr64* i))) i) )
(defmfun $base64 (s)
(let (bytes len base64 k b ind)
(cond
((stringp s)
(setq bytes (string-to-octets s)) )
((and (integerp s) (>= s 0))
(setq bytes (number-to-octets s)) )
(($listp s)
(setq bytes (cdr s)) )
(t
(gf-merror (intl:gettext
"`base64': Argument must be a string, a non-negative integer or a list of octets." ))))
(setq len (length bytes)
base64 (make-array (* 4. (floor (+ len 2.) 3.)) :element-type 'character :initial-element #\0)
k 0 )
(do ()
((null bytes))
(setq b `#(,(pop bytes)
,(if (null bytes) 0 (pop bytes))
,(if (null bytes) 0 (pop bytes)) ))
(setq ind `#(
,(ash (svref b 0) -2)
,(logior (logand (ash (svref b 0) 4) #x30) (ash (svref b 1) -4))
,(logior (logand (ash (svref b 1) 2) #x3c) (ash (svref b 2) -6))
,(logand (svref b 2) #x3f) ))
(do ((i 0 (1+ i)))
((= i 4.))
(setf (char base64 k) (char *chr64* (svref ind i)))
(incf k) ))
(setq len (mod len 3))
(unless (= len 0) (setf (char base64 (decf k)) #\=))
(when (= len 1) (setf (char base64 (decf k)) #\=))
(coerce base64 'string) ))
(defmfun $base64_decode (s &optional (rtype '$string))
(let ((err-str "`base64_decode': Argument must be a base64 encoded string."))
(unless (stringp s) (merror err-str))
(let* ((len (length s))
(nrof= (count-if #'(lambda (c) (char= c #\=)) (subseq s (- len 2.))))
(size (- (ash (* 3. len) -2.) nrof=))
(res (make-array size :element-type 'integer :initial-element 0))
(w (make-array 4. :element-type 'integer :initial-element 0))
(bytes (mapcar #'char-code (coerce s 'list))) )
(when (or (> nrof= 2) (/= 0 (logand len #x3))) (merror err-str))
(prog ((j 0))
a
(setf (svref w 0) (svref *num64* (pop bytes))
(svref w 1) (svref *num64* (pop bytes)) )
(when (or (= -1 (svref w 0)) (= -1 (svref w 1))) (merror err-str))
(setf (svref res j)
(logior (logand (ash (svref w 0) 2.) #xff) (ash (svref w 1) -4.)) )
(when (= (incf j) size) (return))
(setf (svref w 2.) (svref *num64* (pop bytes)))
(when (= -1 (svref w 2.)) (merror err-str))
(setf (svref res j)
(logior (logand (ash (svref w 1) 4.) #xff) (ash (svref w 2.) -2.)) )
(when (= (incf j) size) (return))
(setf (svref w 3.) (svref *num64* (pop bytes)))
(when (= -1 (svref w 3.)) (merror err-str))
(setf (svref res j)
(logior (logand (ash (svref w 2.) 6.) #xff) (svref w 3.) ) )
(when (= (incf j) size) (return))
(go a) )
(setq res (coerce res 'list))
(cond
((equal rtype '$list) (cons '(mlist simp) res))
((equal rtype '$number) (reduce #'(lambda (x y) (logior (ash x 8.) y)) res))
((equal rtype '$string) (octets-to-string res))
(t
(gf-merror (intl:gettext
"`base64_decode': Optional argument must be 'list, 'number or 'string." )))))))
(eval-when
(:compile-toplevel :execute)
(setq *read-base* old-ibase-base64) )
|