mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-22 01:11:32 +00:00
Add ascii armor support
This commit is contained in:
25
armor_test.go
Normal file
25
armor_test.go
Normal file
@ -0,0 +1,25 @@
|
||||
package crypto
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestSimpleArmor(t *testing.T) {
|
||||
blockType := "MINT TEST"
|
||||
data := []byte("somedata")
|
||||
armorStr := EncodeArmor(blockType, nil, data)
|
||||
t.Log("Got armor: ", armorStr)
|
||||
|
||||
// Decode armorStr and test for equivalence.
|
||||
blockType2, _, data2, err := DecodeArmor(armorStr)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
if blockType != blockType2 {
|
||||
t.Errorf("Expected block type %v but got %v", blockType, blockType2)
|
||||
}
|
||||
if !bytes.Equal(data, data2) {
|
||||
t.Errorf("Expected data %X but got %X", data2, data)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user