bcrypt and null kdf done, work on ciphers next (then keytypes)
This commit is contained in:
1
cipher/aes/aes128/cbc/TODO
Normal file
1
cipher/aes/aes128/cbc/TODO
Normal file
@@ -0,0 +1 @@
|
||||
TODO
|
||||
5
cipher/aes/aes128/cbc/consts.go
Normal file
5
cipher/aes/aes128/cbc/consts.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package cbc
|
||||
|
||||
const (
|
||||
Name string = "aes128-cbc"
|
||||
)
|
||||
10
cipher/aes/aes128/consts.go
Normal file
10
cipher/aes/aes128/consts.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package aes128
|
||||
|
||||
import (
|
||||
`r00t2.io/sshkeys/cipher/aes`
|
||||
)
|
||||
|
||||
const (
|
||||
KeySize int = 16 // in bytes; AES128 is so named for its 128-bit key, thus: 128 / 8 = 16
|
||||
KdfKeySize int = KeySize + aes.IvSize
|
||||
)
|
||||
1
cipher/aes/aes128/ctr/TODO
Normal file
1
cipher/aes/aes128/ctr/TODO
Normal file
@@ -0,0 +1 @@
|
||||
TODO
|
||||
5
cipher/aes/aes128/ctr/consts.go
Normal file
5
cipher/aes/aes128/ctr/consts.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package ctr
|
||||
|
||||
const (
|
||||
Name string = "aes128-ctr"
|
||||
)
|
||||
1
cipher/aes/aes128/gcm/TODO
Normal file
1
cipher/aes/aes128/gcm/TODO
Normal file
@@ -0,0 +1 @@
|
||||
TODO
|
||||
5
cipher/aes/aes128/gcm/consts.go
Normal file
5
cipher/aes/aes128/gcm/consts.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package gcm
|
||||
|
||||
const (
|
||||
Name string = "aes128-gcm@openssh.com"
|
||||
)
|
||||
Reference in New Issue
Block a user