File: README

package info (click to toggle)
golang-github-kisom-goutils 0.0~git20161101.0.858c9cb-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 384 kB
  • ctags: 331
  • sloc: makefile: 6
file content (41 lines) | stat: -rw-r--r-- 1,358 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
pemit

This is a utility to pem-encode data. It requires a PEM type to be
specified via the `-t` flag. Any number of files may be specified on
the command line; alternatively, if no arguments are provided or the
only argument is "-", pemit will read from standard input.

Example of standard input:
	$ dd if=/dev/zero bs=32 count=1 | pemit -t "NULL DATA" 
	1+0 records in
	1+0 records out
	32 bytes (32 B) copied, 8.8908e-05 s, 360 kB/s
	-----BEGIN NULL DATA-----
	AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
	-----END NULL DATA-----
	$ dd if=/dev/zero bs=32 count=1 | pemit -t "NULL DATA" -
	1+0 records in
	1+0 records out
	32 bytes (32 B) copied, 3.1041e-05 s, 1.0 MB/s
	-----BEGIN NULL DATA-----
	AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
	-----END NULL DATA-----

Using files:
        $ dd if=/dev/zero of=fileA bs=32 count=1
	1+0 records in
	1+0 records out
	32 bytes (32 B) copied, 9.0908e-05 s, 352 kB/s
        $ dd if=/dev/zero of=fileB bs=32 count=1
	1+0 records in
	1+0 records out
	32 bytes (32 B) copied, 9.0908e-05 s, 352 kB/s
	$ pemit -t NULL\ DATA fileA      
	-----BEGIN NULL DATA-----
	AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
	-----END NULL DATA-----
	$ pemit -t NULL\ DATA fileA fileB
	-----BEGIN NULL DATA-----
	AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
	AAAAAAAAAAAAAAAAAAAAAA==
	-----END NULL DATA-----