Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

asn1_read_tag(3) [suse man page]

asn1_read_tag(3)						     libtasn1							  asn1_read_tag(3)

NAME
asn1_read_tag - Returns the TAG of one element inside a structure SYNOPSIS
#include <libtasn1.h> asn1_retCode asn1_read_tag(ASN1_TYPE root, const char * name, int * tagValue, int * classValue); ARGUMENTS
ASN1_TYPE root pointer to a structure const char * name the name of the element inside a structure. int * tagValue variable that will contain the TAG value. int * classValue variable that will specify the TAG type. DESCRIPTION
Returns the TAG and the CLASS of one element inside a structure. CLASS CAN HAVE ONE OF THESE CONSTANTS
ASN1_CLASS_APPLICATION, ASN1_CLASS_UNIVERSAL, ASN1_CLASS_PRIVATE or ASN1_CLASS_CONTEXT_SPECIFIC. RETURNS
ASN1_SUCCESS Set value OK. ASN1_ELEMENT_NOT_FOUND NAME is not a valid element. COPYRIGHT
Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for libtasn1 is maintained as a Texinfo manual. If the info and libtasn1 programs are properly installed at your site, the command info libtasn1 should give you access to the complete manual. libtasn1 2.2 asn1_read_tag(3)

Check Out this Related Man Page

asn1_create_element(3)						     libtasn1						    asn1_create_element(3)

NAME
asn1_create_element - API function SYNOPSIS
#include <libtasn1.h> asn1_retCode asn1_create_element(ASN1_TYPE definitions, const char * source_name, ASN1_TYPE * element); ARGUMENTS
ASN1_TYPE definitions pointer to the structure returned by "parser_asn1" function const char * source_name the name of the type of the new structure (must be inside p_structure). ASN1_TYPE * element pointer to the structure created. DESCRIPTION
Creates a structure of type source_name. Example using "pkix.asn": rc = asn1_create_element(cert_def, "PKIX1.Certificate", certptr); RETURNS
ASN1_SUCCESS if creation OK, ASN1_ELEMENT_NOT_FOUND if source_name is not known. COPYRIGHT
Copyright (C) 2006-2011 Free Software Foundation, Inc.. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. SEE ALSO
The full documentation for libtasn1 is maintained as a Texinfo manual. If the info and libtasn1 programs are properly installed at your site, the command info libtasn1 should give you access to the complete manual. libtasn1 2.13 asn1_create_element(3)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

excise a part of string

Dear all, will appreciate your help with this (supposedly simple) thing. How to use sed to replace a part of string like this: (TAGthenwhatever: into (TAG: meaning that '(TAG' (known, can be specified to sed and is marked with the '(' at the beginning) will stay and the 'thenwhatever'... (9 Replies)
Discussion started by: roussine
9 Replies

2. UNIX for Dummies Questions & Answers

check if a character is inside a variable

Good morning forums. Ive been trying all weekend to do this with no luck, so i have come to the forums for help. What i want to do is check if an inputed character is inside a variable. for example, if var=1 2 3 4 5 6 7 8 9 0 i would like to see if a newly inputed number is already... (5 Replies)
Discussion started by: strasner
5 Replies

3. Solaris

how to calculate offset value to mb value in vxvm

root@erpqas# vxdg -g sap_dg free DISK DEVICE TAG OFFSET LENGTH FLAGS sapdisk3 c1t10d0s2 c1t10d0 15707513 2869 - sapdisk3 c1t10d0s2 c1t10d0 71080956 43335 - sapdisk5 c1t12d0s2 c1t12d0 70321149 803142 - ... (1 Reply)
Discussion started by: tv.praveenkumar
1 Replies

4. Shell Programming and Scripting

sed, awk [TAG]$content[/TAG] How to get var in $content in textfile?

Hello, I got a Qstion. Im posting to a phpbb forum with bash and curl.. i have a text file with the following tags that i post to the forum: $var1 $var2 $var3 How can i with sed or awk put var content from shell script between the ... in the... (7 Replies)
Discussion started by: atmosroll
7 Replies

5. UNIX for Dummies Questions & Answers

Replacement in certain tags of a file from another file

Here is the situation. I have a number of files with certain tags (TAG files): TAG1: TAG2: TAG3: TAG4: TAG5: TAG6: TAG7: and another file with the following format: //name1 Jason //name2 Mariam //name3 Andrew //name4 Catherine (0 Replies)
Discussion started by: FelipeAd
0 Replies

6. Shell Programming and Scripting

How can i get variable value inside << EOS?

Hi, Below is my code: user="wluser" password="welcom123" ip=$1 expect << 'EOS' spawn sftp ${user}@${ip}:/ expect "Password:" send "${pass}\n" expect "sftp>" send "get *date.csv\n" expect "sftp>" send "bye\n" EOS (4 Replies)
Discussion started by: mohtashims
4 Replies