asn1_read_value() and friends understand the ?CURRENT keyword.
[platform/upstream/libtasn1.git] / tests / crlf
1 #!/bin/sh
2
3 # Copyright (C) 2006-2014 Free Software Foundation, Inc.
4 #
5 # Author: Simon Josefsson
6 #
7 # This file is part of LIBTASN1.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 set -e
23
24 srcdir=${srcdir:-.}
25 ASN1DECODING=../src/asn1Decoding${EXEEXT}
26
27 # The crlf.cer file is a normal certificate which contains bytes 0x0A
28 # (LF), 0x0D (CF), and 0xFF (EOF), all are known to cause failures
29 # when using fopen/fgetc/fscanf on streams on some systems (read:
30 # Windows).
31
32 $ASN1DECODING \
33     $srcdir/../examples/pkix.asn \
34     $srcdir/crlf.cer \
35     PKIX1Implicit88.Certificate >/dev/null 2>&1