Clean up assocs to not use swapd
[factor/jcg.git] / unmaintained / cryptlib / notes.txt
blobb5f95cff788f8cbb4fb3f8fa211b51cdd40f3208
1 Read remaining data:
3  USING: alien libc kernel-internals byte-arrays ;
4  
5  SYMBOL: buffer
6  
7  11 "uchar*" malloc-array buffer set
8  
9  "Hello world" buffer get string>memory
11  buffer get 11 memory>string .
13  "Hello world"
15  11 [ buffer get swap alien-unsigned-1 ] each
17  .s
19  72
20  101
21  108
22  108
23  111
24  32
25  119
26  111
27  114
28  108
29  100 
31  11 [ buffer get swap alien-unsigned-1 ] map
33  >byte-array .
35  { 72 101 108 108 111 32 119 111 114 108 100 }
37 Parse a file:
39  openssl asn1parse -in file.pem
41 Parse a DER file:
43  openssl asn1parse -inform DER -in file.der
45 Generate a PKCS#12 file:
47  openssl pkcs12 -export -in certs.pem -out file.p12 -name "MY Certificate"
49  The export option specifies that a PKCS#12 file will be generated (rather 
50  than parsed).