bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / tomcat-connectors-1.2.32-src / tools / signfile.sh
1 #!/bin/sh
2
3 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # contributor license agreements.  See the NOTICE file distributed with
5 # this work for additional information regarding copyright ownership.
6 # The ASF licenses this file to You under the Apache License, Version 2.0
7 # (the "License"); you may not use this file except in compliance with
8 # the License.  You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 gpgopts="-ba"
19 for o
20 do
21     case "$o" in
22     *=*) a=`echo "$o" | sed 's/^[-_a-zA-Z0-9]*=//'`
23      ;;
24     *) a=''
25      ;;
26     esac
27     case "$o" in
28         --default-key=*  )
29             gpgopts="$gpgopts --default-key $a"
30             shift
31         ;;
32         --passphrase=*  )
33             gpgopts="$gpgopts --passphrase $a"
34             shift
35         ;;
36         * )
37             break
38         ;;
39     esac
40 done
41
42 # Try to locate a MD5 binary
43 md5_bin="`which md5sum 2>/dev/null || type md5sum 2>&1`"
44 if [ -x "$md5_bin" ]; then
45     MD5SUM="$md5_bin --binary "
46 else
47     MD5SUM="echo 00000000000000000000000000000000 "
48 fi
49 # Try to locate a SHA1 binary
50 sha1_bin="`which sha1sum 2>/dev/null || type sha1sum 2>&1`"
51 if [ -x "$sha1_bin" ]; then
52     SHA1SUM="$sha1_bin --binary "
53 else
54     SHA1SUM="echo 0000000000000000000000000000000000000000 "
55 fi
56
57 for o
58 do
59     echo "Signing $o"
60     gpg $gpgopts $o
61     $MD5SUM $o > $o.md5 
62     $SHA1SUM $o > $o.sha1
63 done
64