Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 276 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 276 Bytes

Camellia

Library realizes the Camellia algorythm

cipher, err := NewCameliaCipher(key)
if err != nil {
    log.Fatalf("err: %v", err)
}

var b [16]byte

cipher.Encrypt(b[:], messageText)
cipher.Decrypt(b[:], cipherText)