Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cl-base64
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nyxt
cl-base64
Commits
a77fb6c8
Commit
a77fb6c8
authored
22 years ago
by
Kevin M. Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
r3769: Auto commit for Debian build
parent
b8e5576d
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
debian/changelog
+7
-0
7 additions, 0 deletions
debian/changelog
decode.lisp
+3
-3
3 additions, 3 deletions
decode.lisp
encode.lisp
+16
-11
16 additions, 11 deletions
encode.lisp
package.lisp
+2
-2
2 additions, 2 deletions
package.lisp
with
28 additions
and
16 deletions
debian/changelog
+
7
−
0
View file @
a77fb6c8
cl-base64 (3.0.1-2) unstable; urgency=low
* Change declarations from array to simple-array where feasible
* add more fixnum declarations where helpful
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 14 Jan 2003 04:55:48 -0700
cl-base64 (3.0.1-1) unstable; urgency=low
* Fix output of base64-string-to-usb8-array
...
...
This diff is collapsed.
Click to expand it.
decode.lisp
+
3
−
3
View file @
a77fb6c8
...
...
@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; $Id: decode.lisp,v 1.
3
2003/01/14 11:
43:10
kevin Exp $
;;;; $Id: decode.lisp,v 1.
4
2003/01/14 11:
59:44
kevin Exp $
;;;;
;;;; This file implements the Base64 transfer encoding algorithm as
;;;; defined in RFC 1521 by Borensten & Freed, September 1993.
...
...
@@ -61,7 +61,7 @@
(
:string
'
((
simple-string
result
)))
(
:usb8-array
'
((
type
(
array
(
usigned-byte
8
)
(
*
))
result
))))
'
((
type
(
simple-
array
(
usigned-byte
8
)
(
*
))
result
))))
(
fixnum
ridx
))
(
do*
((
bitstore
0
)
(
bitcount
0
)
...
...
@@ -146,7 +146,7 @@
(
:string
'
((
simple-string
result
)))
(
:usb8-array
'
((
type
(
array
(
unsigned-byte
8
)
(
*
))
result
))))
'
((
type
(
simple-
array
(
unsigned-byte
8
)
(
*
))
result
))))
(
fixnum
ridx
))
(
loop
for
char
of-type
character
across
input
...
...
This diff is collapsed.
Click to expand it.
encode.lisp
+
16
−
11
View file @
a77fb6c8
...
...
@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; $Id: encode.lisp,v 1.
4
2003/01/14 11:
43:10
kevin Exp $
;;;; $Id: encode.lisp,v 1.
5
2003/01/14 11:
59:44
kevin Exp $
;;;;
;;;; This file implements the Base64 transfer encoding algorithm as
;;;; defined in RFC 1521 by Borensten & Freed, September 1993.
...
...
@@ -28,7 +28,7 @@
;;;; - Renamed functions now that supporting integer conversions
;;;; - URI-compatible encoding using :uri key
;;;;
;;;; $Id: encode.lisp,v 1.
4
2003/01/14 11:
43:10
kevin Exp $
;;;; $Id: encode.lisp,v 1.
5
2003/01/14 11:
59:44
kevin Exp $
(
in-package
#:cl-base64
)
...
...
@@ -81,7 +81,7 @@ with a #\Newline."
(
ioutput
0
)))
(
col
(
if
(
plusp
columns
)
0
(
1+
padded-length
))))
(
the
fixnum
(
1+
padded-length
))))
)
(
declare
(
fixnum
string-length
padded-length
col
,@
(
when
(
eq
output-type
:string
)
'
(
ioutput
)))
...
...
@@ -129,8 +129,8 @@ with a #\Newline."
(
the
fixnum
(
logand
#x3f
svalue
))))
(
output-char
pad
))))
(
do
((
igroup
0
(
1+
igroup
))
(
isource
0
(
+
isource
3
)))
(
do
((
igroup
0
(
the
fixnum
(
1+
igroup
))
)
(
isource
0
(
the
fixnum
(
+
isource
3
)))
)
((
=
igroup
complete-group-count
)
(
cond
((
=
remainder
2
)
...
...
@@ -149,9 +149,11 @@ with a #\Newline."
(
ash
,
(
case
input-type
(
:string
'
(
char-code
(
the
character
(
char
input
(
1+
isource
)))))
'
(
char-code
(
the
character
(
char
input
(
the
fixnum
(
1+
isource
))))))
(
:usb8-array
'
(
the
fixnum
(
aref
input
(
1+
isource
)))))
'
(
the
fixnum
(
aref
input
(
the
fixnum
(
1+
isource
))))))
8
))))
3
))
((
=
remainder
1
)
...
...
@@ -188,14 +190,16 @@ with a #\Newline."
(
the
fixnum
,
(
case
input-type
(
:string
'
(
char-code
(
the
character
(
char
input
(
1+
isource
)))))
'
(
char-code
(
the
character
(
char
input
(
the
fixnum
(
1+
isource
))))))
(
:usb8-array
'
(
aref
input
(
1+
isource
)))))
8
))
(
the
fixnum
,
(
case
input-type
(
:string
'
(
char-code
(
the
character
(
char
input
(
+
2
isource
)))))
'
(
char-code
(
the
character
(
char
input
(
the
fixnum
(
+
2
isource
))))))
(
:usb8-array
'
(
aref
input
(
+
2
isource
))))
)))
...
...
@@ -289,9 +293,10 @@ with a #\Newline."
(
last-nonpad-char
(
1-
nonpad-chars
))
(
str
(
make-string
strlen
)))
(
declare
(
fixnum
padded-length
last-nonpad-char
))
(
do*
((
strpos
0
(
1+
strpos
))
(
do*
((
strpos
0
(
the
fixnum
(
1+
strpos
))
)
(
int
(
ash
input
(
/
padding-bits
3
))
(
ash
int
-6
))
(
6bit-value
(
logand
int
#x3f
)
(
logand
int
#x3f
)))
(
6bit-value
(
the
fixnum
(
logand
int
#x3f
))
(
the
fixnum
(
logand
int
#x3f
))))
((
=
strpos
nonpad-chars
)
(
let
((
col
0
))
(
declare
(
fixnum
col
))
...
...
This diff is collapsed.
Click to expand it.
package.lisp
+
2
−
2
View file @
a77fb6c8
...
...
@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; $Id: package.lisp,v 1.
2
2003/01/1
2 22:32
:4
0
kevin Exp $
;;;; $Id: package.lisp,v 1.
3
2003/01/1
4 11:59
:4
4
kevin Exp $
;;;;
;;;; *************************************************************************
...
...
@@ -50,7 +50,7 @@
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
)
(
declaim
(
type
simple-string
*uri-encode-table*
))
(
deftype
decode-table
()
'
(
array
fixnum
(
256
)))
(
deftype
decode-table
()
'
(
simple-
array
fixnum
(
256
)))
(
defun
make-decode-table
(
encode-table
)
(
let
((
dt
(
make-array
256
:adjustable
nil
:fill-pointer
nil
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment