Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
245de19b
Commit
245de19b
authored
25 years ago
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
Disabled some debug.
Rev: src/modules/_Crypto/rsa.c:1.7
parent
7ec41a38
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/_Crypto/rsa.c
+14
-4
14 additions, 4 deletions
src/modules/_Crypto/rsa.c
with
14 additions
and
4 deletions
src/modules/_Crypto/rsa.c
+
14
−
4
View file @
245de19b
/*
* $Id: rsa.c,v 1.
6
2000/02/02 19:
13:5
5 grubba Exp $
* $Id: rsa.c,v 1.
7
2000/02/02 19:
24:4
5 grubba Exp $
*
* Glue to RSA BSAFE's RSA implementation.
*
...
...
@@ -28,7 +28,7 @@
#include
<bsafe.h>
RCSID
(
"$Id: rsa.c,v 1.
6
2000/02/02 19:
13:5
5 grubba Exp $"
);
RCSID
(
"$Id: rsa.c,v 1.
7
2000/02/02 19:
24:4
5 grubba Exp $"
);
struct
pike_rsa_data
{
...
...
@@ -55,11 +55,13 @@ static B_ALGORITHM_METHOD *rsa_chooser[] =
&
AM_RSA_ENCRYPT
,
&
AM_RSA_DECRYPT
,
NULL
};
#ifdef PIKE_RSA_DEBUG
/*
* Debug code.
*/
void
low_dump_string
(
char
*
name
,
unsigned
char
*
buffer
,
int
len
)
static
void
low_dump_string
(
char
*
name
,
unsigned
char
*
buffer
,
int
len
)
{
int
i
;
fprintf
(
stderr
,
"%s:
\n
"
,
name
);
...
...
@@ -75,6 +77,8 @@ void low_dump_string(char *name, unsigned char *buffer, int len)
}
}
#endif
/* PIKE_RSA_DEBUG */
/*
* RSA memory handling glue code.
*/
...
...
@@ -382,7 +386,7 @@ static void f_decrypt(INT32 args)
int
i
;
if
((
!
THIS
->
n
)
||
(
!
THIS
->
d
))
{
error
(
"P
ublic
key has not been set.
\n
"
);
error
(
"P
rivate
key has not been set.
\n
"
);
}
get_all_args
(
"decrypt"
,
args
,
"%S"
,
&
s
);
...
...
@@ -415,7 +419,9 @@ static void f_decrypt(INT32 args)
error
(
"decrypt failed: %04x
\n
"
,
err
);
}
#ifdef PIKE_RSA_DEBUG
fprintf
(
stderr
,
"RSA: Decrypt len: %d
\n
"
,
len
);
#endif
/* PIKE_RSA_DEBUG */
flen
=
0
;
if
((
err
=
B_DecryptFinal
(
THIS
->
cipher
,
buffer
+
len
,
&
flen
,
s
->
len
-
len
,
...
...
@@ -425,7 +431,9 @@ static void f_decrypt(INT32 args)
error
(
"Decrypt failed: %04x
\n
"
,
err
);
}
#ifdef PIKE_RSA_DEBUG
fprintf
(
stderr
,
"RSA: Decrypt flen: %d
\n
"
,
flen
);
#endif
/* PIKE_RSA_DEBUG */
len
+=
flen
;
...
...
@@ -440,6 +448,7 @@ static void f_decrypt(INT32 args)
/* FIXME: Enforce i being 1? */
if
((
buffer
[
i
]
!=
2
)
||
((
i
+=
strlen
(
buffer
+
i
))
<
9
)
||
(
len
!=
THIS
->
n
->
len
))
{
#ifdef PIKE_RSA_DEBUG
fprintf
(
stderr
,
"Decrypt failed: i:%d, len:%d, n->len:%d, buffer[0]:%d
\n
"
,
i
,
len
,
THIS
->
n
->
len
,
buffer
[
0
]);
low_dump_string
(
"s"
,
s
->
str
,
s
->
len
);
...
...
@@ -447,6 +456,7 @@ static void f_decrypt(INT32 args)
low_dump_string
(
"n"
,
THIS
->
n
->
str
,
THIS
->
n
->
len
);
low_dump_string
(
"e"
,
THIS
->
e
->
str
,
THIS
->
e
->
len
);
low_dump_string
(
"d"
,
THIS
->
d
->
str
,
THIS
->
d
->
len
);
#endif
/* PIKE_RSA_DEBUG */
pop_n_elems
(
args
);
push_int
(
0
);
return
;
...
...
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