Questions tagged [ironclad]
10 questions
10
votes
1 answer
Hashing with ironclad and flexi-streams
I'm trying to hash some strings in a Common Lisp app I'm working on. The sd-sha1 package seems to be unsupported, and has been for some time judging by the CLiki page, which suggests using Ironclad instead. Fair enough,
=> (require…

Inaimathi
- 13,853
- 9
- 49
- 93
4
votes
1 answer
Mismatch between ironclad and couch pbkdf2 hashing
My problem context:
Fedora 22 64bit on Linode KVM instance, CouchDB v.1.6.1, SBCL 1.2.16
CouchDB: I create a user with password "testpass". The corresponding created document in _users database contains (among other stuff):
{ ...
…

Paralife
- 6,116
- 8
- 38
- 64
3
votes
1 answer
Ironclad Cryptography Library for Emacs Lisp?
I love the Ironclad cryptography library for Common Lisp. Out of curiosity, has anyone implemented this library into their Emacs Lisp project? In researching this question, I suspected there would be too much work to make it compatible with a pure…

Ian Bryant
- 31
- 3
3
votes
2 answers
Can't import numpy into embedded ironpython engine
From an ipy console I can
import ironclad
import numpy
with no problem.
However when I try the same imports with an embedded interpreter the numpy import fails. My Python engines is set up like this:
public PyEngine()
{
//Frames…

pdemarest
- 1,810
- 1
- 15
- 16
3
votes
2 answers
IronClad equivalent for Jython
For IronPython there is a project - IronClad, that aims to transparently run C extensions in it. Is there a similiar project for Jython?

sumek
- 26,495
- 13
- 56
- 75
2
votes
1 answer
why not ironclad:decrypt-in-place work as expected?
the code as follow:
(ql:quickload :ironclad)
(ql:quickload :crypto-shortcuts)
(use-package :ironclad)
(defparameter str "Hello World!")
(defparameter message (ascii-string-to-byte-array str))
(defparameter key "1234")
(let ((cipher (make-cipher…

monkbeta
- 35
- 3
1
vote
0 answers
Numpy and Scipy for IronPython using IronClad....installation
I have installed IronPython and would like to use Numpy and Scipy by using Ironclad. However i am unable to do it for Linux. If any one has done this before could he let me know the steps he has taken

Tanmoy
- 251
- 1
- 2
- 8
1
vote
1 answer
.Net Array or IList from NumPy array in IronPython?
Imagine I have a .Net application that supports user extensions in the form of Python modules by embedding IronPython. Using Ironclad, I can allow users to make use of the NumPy and SciPy packages from within their modules. How good is the interop…

Barry Wark
- 107,306
- 24
- 181
- 206
0
votes
1 answer
Ironclad import error
I am getting the following error when trying to import a C-Extension I need with irconclad. Is this related to my configuration or limitation in ironclad?
C:\devtools\ipython>ipy
IronPython 2.0 (2.0.0.0) on .NET 2.0.50727.3053
Type "help",…

Kozyarchuk
- 21,049
- 14
- 40
- 46
0
votes
1 answer
How can I obtain the exponent and modulus from a PEM
In order to perform asymmetric encryption Common's Lisp Ironclad library requires the key to be initialized with the exponent and modulus. Given that I probably don't want to generate the keys myself, so standing on the shoulder of the giants of…

PuercoPop
- 6,707
- 4
- 30
- 40