mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-30 18:03:32 +08:00
upstream: portability fix for sed that always emil a newline even
if the input does not contain one; from Michael Forney OpenBSD-Regress-ID: 9190c3ddf0d2562ccc02c4a95fce0e392196bfc7
This commit is contained in:
parent
8074f9499e
commit
7882d2eda6
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: mktestdata.sh,v 1.7 2018/09/12 01:36:45 djm Exp $
|
||||
# $OpenBSD: mktestdata.sh,v 1.8 2020/05/01 03:58:02 djm Exp $
|
||||
|
||||
PW=mekmitasdigoat
|
||||
|
||||
@ -56,8 +56,8 @@ ecdsa_params() {
|
||||
awk '/^pub:/,/^ASN1 OID:/' | #\
|
||||
grep -v '^[a-zA-Z]' | tr -d ' \n:' > ${_outbase}.pub
|
||||
openssl ec -noout -text -in $_in | \
|
||||
grep "ASN1 OID:" | tr -d '\n' | \
|
||||
sed 's/.*: //;s/ *$//' > ${_outbase}.curve
|
||||
grep "ASN1 OID:" | \
|
||||
sed 's/.*: //;s/ *$//' | tr -d '\n' > ${_outbase}.curve
|
||||
for x in priv pub curve ; do
|
||||
echo "" >> ${_outbase}.$x
|
||||
echo ============ ${_outbase}.$x
|
||||
|
Loading…
Reference in New Issue
Block a user