summaryrefslogtreecommitdiffstats
path: root/demos/engines/rsaref/README
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-11-14 22:42:35 +0000
committerRichard Levitte <levitte@openssl.org>2001-11-14 22:42:35 +0000
commit6276f1e1000c755d8883188f53ec50ac9045bca8 (patch)
tree56deea4421175ba6c4fb98cedc5e91e2b00b2492 /demos/engines/rsaref/README
parent5b8a57ecaee80b8abac431c201387bcebab2113f (diff)
Add a demo that reimplements the RSAref glue in form of a dynamically
loadable engine.
Diffstat (limited to 'demos/engines/rsaref/README')
-rw-r--r--demos/engines/rsaref/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/demos/engines/rsaref/README b/demos/engines/rsaref/README
new file mode 100644
index 0000000000..00b1f7473b
--- /dev/null
+++ b/demos/engines/rsaref/README
@@ -0,0 +1,22 @@
+librsaref.so is a demonstration dynamic engine that does RSA
+operations using the old RSAref 2.0 implementation.
+
+To make proper use of this engine, you must download RSAref 2.0
+(search the web for rsaref.tar.Z for example) and unpack it in this
+directory, so you'll end up having the subdirectories "install" and
+"source" among others.
+
+To build, do the following:
+
+ make
+
+This will list a number of available targets to choose from. Most of
+them are architecture-specific. The exception is "gnu" which is to be
+used on systems where GNU ld and gcc have been installed in such a way
+that gcc uses GNU ld to link together programs and shared libraries.
+
+The make file assumes you use gcc. To change that, just reassign CC:
+
+ make CC=cc
+
+The result is librsaref.so, which you can copy to any place you wish.