Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gnunet-rsa(1) [debian man page]

GNUNET-RSA(1)						      General Commands Manual						     GNUNET-RSA(1)

NAME
gnunet-rsa - manipulate GNUnet RSA key files SYNOPSIS
gnunet-rsa [options]FILENAME DESCRIPTION
gnunet-rsa can be used to create an RSA private key and to print the corresponding public key. You must specify a filename containing an RSA private key in GNUnet format as an argument. If the file does not exist, gnunet-rsa will create a key. This may then take a while. If the option -p is given, the corresponding public key will be printed to the console. OPTIONS
-p, --print-public-key Print the corresponding public key to stdout. -P, --print-peer-identity Print the corresponding peer identity (hash of the public key) to stdout. This hash is used for the name of peers. -s, --print-short-identity Print the corresponding short hash (256-bit hash of the public key) to stdout. This hash is used for names in the zkey zone. -c FILENAME, --config=FILENAME Use the configuration file FILENAME. -h, --help Print short help on options. -L LOGLEVEL, --loglevel=LOGLEVEL Use LOGLEVEL for logging. Valid values are DEBUG, INFO, WARNING and ERROR. -v, --version Print GNUnet version number. BUGS
Report bugs by using Mantis <https://gnunet.org/bugs/> or by sending electronic mail to <gnunet-developers@gnu.org> GNUnet Mar 15, 2012 GNUNET-RSA(1)

Check Out this Related Man Page

GNUNET-UNINDEX(1)					      General Commands Manual						 GNUNET-UNINDEX(1)

NAME
gnunet-unindex - a command line interface for deleting indexed files from GNUnet SYNOPSIS
gnunet-unindex [OPTIONS] FILENAME DESCRIPTION
gnunet-unindex is used for deleting indexed files from GNUnet. -c FILENAME, --config=FILENAME use config file (defaults: ~/.gnunet/gnunet.conf) -h, --help print help page -L LOGLEVEL, --loglevel=LOGLEVEL Change the loglevel. Possible values for LOGLEVEL are NOTHING, ERROR, WARNING, INFO and DEBUG. -v, --version print the version number -V, --verbose be verbose NOTES
You can only unindex files that you indexed and that you still have available locally in full. You should use gnunet-unindex on files that you indexed (not inserted) and that you are going to delete or move locally. FILES ~/.gnunet/gnunet.conf GNUnet configuration file REPORTING BUGS
Report bugs to <https://gnunet.org/bugs/> or by sending electronic mail to <gnunet-developers@gnu.org> SEE ALSO
gnunet-fs-gtk(1), gnunet-publish(1), gnunet-search(1), gnunet-download(1), gnunet.conf(5) GNUnet 6 Sep 2009 GNUNET-UNINDEX(1)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk -F -f

linux redhat 8.0 if I have a file with a list of file names and want to apply the awk -F -f/ FILENAME / file file how can apply all the names of the files in FILENAME "/ /" simultaneously.. too frustrating! :rolleyes: please help me with this little nut cracker! would appreciate!:confused: (0 Replies)
Discussion started by: moxxx68
0 Replies

2. Shell Programming and Scripting

grep Question

I have a file which loads procedure/function into ORACLE.Top of the file contains 3 rows which is FILENAME, FILETYPE AND COMMENTS and then the function/procedure etc. FILENAME: FILETYPE: COMMENTS: <Function/Procedure etc> The Filename,FILETYPE, COMMENTS will be entered by the dba which... (10 Replies)
Discussion started by: yerra
10 Replies

3. Shell Programming and Scripting

move files using wildcard

I have the following requirement. PATHA =/opr/itr/ PATHB=/etc/data/ FILENAME=*abc* file name is wild carded as there could be many files with name abc anywhere I tried mv $PATHA/$FILENAME $PATHB and I got a error that /etc/data/ can not be created Could any one please help. ... (1 Reply)
Discussion started by: onlyjayaram
1 Replies

4. Linux

RSA decrypt with public key ?

Dear All, I need to decrypt with private key most of the time and this works for RSA. At times I need to decrypt with public key (data is encrypted with private key). This does not seem to work via VB.Net. Is there support for such an activity in Java on Linux or Windows ? Please advise. ... (3 Replies)
Discussion started by: Sushma Y
3 Replies

5. Shell Programming and Scripting

A silly question

FILENAME is a variable. Is there really any difference between "$FILENAME.sh" and "$FILENAME".sh ? (5 Replies)
Discussion started by: proactiveaditya
5 Replies

6. Shell Programming and Scripting

How do I include the file being compared into calculation?

nawk -F, 'NR==FNR{file=FILENAME;a++;next} a{if(FILENAME~file)next;b++;} END{ for(i in a){if(a && !b){print "NEW: "i}} for(i in b){if(b)print i"\t\t"b}}' OFS=, 123.csv *.csv I need to include 123.csv into the equation for the total output currently it compares whatever is on 123.csv against... (27 Replies)
Discussion started by: llcooljatt
27 Replies

7. Shell Programming and Scripting

How to print everything after a string match

Hi all, I'm trying to do some work on the authorized_keys file to do a check if there's any information after the hash key.. At the end of the hash key's in the file, there can be an = or == Is there a way to check if anything exists after these equals and if so print it out or else print... (2 Replies)
Discussion started by: Jazmania
2 Replies

8. Shell Programming and Scripting

Rsa public private key matching

Hi All, I have a requirement where i need to check if an rsa public key corresponds to a private key and hence return success or failure. Currently i am using the command diff <( ssh-keygen -y -e -f "$PRIVKEY" ) <( ssh-keygen -y -e -f "$PUBLICKEY" ) and its solving my purpose. This is in... (1 Reply)
Discussion started by: mritusmoi
1 Replies

9. Shell Programming and Scripting

Optimizing script to reduce execution time

AFILENAME=glow.sh FILENAME="/${AFILENAME}" WIDTHA=$(echo ${FILENAME} | wc -c) NTIME=0 RESULTS=$(for eachletter in $(echo ${FILENAME} | fold -w 1) do WIDTHTIMES=$(awk "BEGIN{printf... (5 Replies)
Discussion started by: SkySmart
5 Replies