summaryrefslogtreecommitdiffstats
path: root/scan_asn1SET.c
diff options
context:
space:
mode:
Diffstat (limited to 'scan_asn1SET.c')
-rw-r--r--scan_asn1SET.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/scan_asn1SET.c b/scan_asn1SET.c
new file mode 100644
index 0000000..7cced52
--- /dev/null
+++ b/scan_asn1SET.c
@@ -0,0 +1,14 @@
+#include "asn1.h"
+
+size_t scan_asn1SET(const char* src,const char* max,size_t* len) {
+ size_t res,tmp;
+ unsigned long tag;
+ enum asn1_tagclass tc;
+ enum asn1_tagtype tt;
+ if (!(res=scan_asn1tag(src,max,&tc,&tt,&tag))) return 0;
+ if (!(tmp=scan_asn1length(src+res,max,len))) return 0;
+ res+=tmp;
+ if (tc==UNIVERSAL && tt==CONSTRUCTED && tag==SET_OF)
+ return res;
+ return 0;
+}