シェルからbase32へのエンコード


9

シェルから直接、入力文字列をbase32エンコーディングにエンコードしようとしています。私はこれをubuntuで行うつもりですが、ここでは特にフレーバーは重要ではないと思います。

これを簡単に行うための既存のlinux / unixツールはありますか?

以下の線に沿った何か:

-bash-3.2$ echo -n 'hello' | base32

回答:


10

さて、クイックパッケージ検索では、単一のスタンドアロンユーティリティのようなものはありません。

一方、適切なPerlライブラリがあり、簡単なperlスクリプトを作成するのは簡単です。何かのようなもの:

$ sudo apt-get install libmime-base32-perl

そして、次のようなスクリプトbase32enc.pl

#!/usr/bin/perl

use MIME::Base32 qw( RFC );

undef $/;  # in case stdin has newlines
$string = <STDIN>;

$encoded = MIME::Base32::encode($string);

print "$encoded\n";

そう:

$ echo -n "hello" | ./base32enc.pl
NBSWY3DP

かなりまばらなCPANエントリは次のとおりです。http//search.cpan.org/~danpeder/MIME-Base32-1.01/Base32.pm

したがって、マイナーな変更により、デコードも可能になります。


2

cjcの優れた答えを改善しただけなので、エンコードとデコードの方法base32と同様に機能するユーティリティを使用できますbase64

#! /usr/bin/perl

use MIME::Base32;
use strict;

undef $/;

my $string = <STDIN>;
my $changed;

if ( $ARGV[0] eq "-d" ){
        $changed = MIME::Base32::decode($string);
}else{
        $changed = MIME::Base32::encode($string); 
}

if ( $changed =~ /\n$/ ) {
    printf $changed;
}else{
    printf $changed . "\n";
}

テスト:

$ base32 < <(echo -n 'abcdef')
MFRGGZDFMY
$ base32 -d < <(echo  'MFRGGZDFMY')
abcdef


2

Pythonの使用:

$ python
Python 2.7.14 (default, Sep 27 2017, 12:15:00) 
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b32encode('hello')
'NBSWY3DP'

0
  1. インストールperl-MIME-Base32.noarch

    yum install perl-MIME-Base32.noarch
    
  2. スクリプトをbas32ファイル名で保存します。

    #!/usr/bin/perl
    
    use MIME::Base32 qw( RFC );
    
    undef $/;  # in case stdin has newlines
    $ed=$ARGV[0];
    $string=$ARGV[1];
    if ($ed eq "-e")
    {
    $encoded = MIME::Base32::encode($string);
    print "$encoded\n";
    }
    elsif ($ed eq "-d")
    {
    $decoded = MIME::Base32::decode($string);
    print "$decoded\n";
    }
    else { print " please pass option also\n";
    exit;
    }
    
    chmod +x base32
    cp base32 /usr/bin/
    base32 -e string
    base32 -d "any encoded value"
    
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.