go threefish
v1.0.2
Threefish는 NIST 해시 함수 경쟁에 제출된 Skein 해시 함수의 일부로 개발된 조정 가능한 블록 암호입니다. Threefish는 256, 512 및 1024비트의 블록 크기를 지원합니다.
전체 Threefish 사양은 각주 1 에서 확인할 수 있습니다.
테스트 벡터는 최신 참조 구현 2 에서 추출되었습니다.
암호화 및 암호 해독 루프는 각 반복마다 8라운드를 포함하도록 펼쳐졌습니다. 이를 통해 회전 상수를 반복하지 않고 코드에 포함할 수 있습니다. 이 방법은 자세한 성능 정보를 제공하는 백서 1 에 자세히 설명되어 있습니다.
Go 프로젝트에 종속 항목으로 설치하려면 다음 안내를 따르세요.
go get -U github.com/schultz-is/go-threefish
이 패키지의 암호 구현은 crypto/cipher
cipher.Block
인터페이스를 충족합니다. 이 라이브러리에서 반환된 인스턴스는 256, 512 또는 1024비트 블록 크기를 지원하는 모든 블록 암호화 모드와 함께 사용할 수 있습니다.
package main
import (
"crypto/cipher"
"crypto/rand"
"fmt"
"github.com/schultz-is/go-threefish"
)
func main () {
message := make ([] byte , 128 )
copy ( message , [] byte ( "secret message" ))
// Assign a key. Generally this is derived from a known secret value. Often
// a passphrase is derived using a key derivation function such as PBKDF2.
key := make ([] byte , 128 )
_ , err := rand . Read ( key )
if err != nil {
panic ( err )
}
// Assign a tweak value. This allows customization of the block cipher as in
// the UBI block chaining mode. Support for the tweak value is not available
// in the block ciphers modes supported by the standard library.
tweak := make ([] byte , 16 )
_ , err = rand . Read ( tweak )
if err != nil {
panic ( err )
}
// Instantiate and initialize a block cipher.
block , err := threefish . New1024 ( key , tweak )
if err != nil {
panic ( err )
}
// When using CBC mode, the IV needs to be unique but does not need to be
// secure. For this reason, it can be prepended to the ciphertext.
ciphertext := make ([] byte , block . BlockSize () + len ( message ))
iv := ciphertext [: block . BlockSize ()]
_ , err = rand . Read ( iv )
if err != nil {
panic ( err )
}
mode := cipher . NewCBCEncrypter ( block , iv )
mode . CryptBlocks ( ciphertext [ block . BlockSize ():], message )
fmt . Printf ( "%x n " , ciphertext )
}
제공된 Makefile을 통해 단위 테스트를 실행할 수 있고 테스트 범위를 볼 수 있습니다.
make test
make cover
제공된 Makefile을 통해 벤치마크를 실행하고 CPU 및 메모리 프로필을 생성할 수 있습니다.
make benchmark
go tool pprof cpu.prof
go tool pprof mem.prof
name time/op speed
Threefish256/encrypt-8 85 ns 372 MB/s
Threefish256/decrypt-8 111 ns 287 MB/s
Threefish512/encrypt-8 234 ns 272 MB/s
Threefish512/decrypt-8 363 ns 175 MB/s
Threefish1024/encrypt-8 581 ns 220 MB/s
Threefish1024/decrypt-8 685 ns 186 MB/s
name time/op speed
Threefish256/encrypt-16 124 ns 259 MB/s
Threefish256/decrypt-16 156 ns 206 MB/s
Threefish512/encrypt-16 338 ns 189 MB/s
Threefish512/decrypt-16 310 ns 206 MB/s
Threefish1024/encrypt-16 804 ns 159 MB/s
Threefish1024/decrypt-16 778 ns 165 MB/s
http://www.skein-hash.info/sites/default/files/skein1.3.pdf ↩ ↩ 2
http://www.skein-hash.info/sites/default/files/NIST_CD_102610.zip ↩