-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathinit.go
22 lines (20 loc) · 807 Bytes
/
init.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package iapi
import "encoding/gob"
func init() {
gob.Register(&EntityKey_Ed25519{})
gob.Register(&EntitySecretKey_Ed25519{})
gob.Register(&EntityKey_Curve25519{})
gob.Register(&EntitySecretKey_Ed25519{})
gob.Register(&EntityKey_IBE_Params_BLS12381{})
gob.Register(&EntitySecretKey_IBE_Master_BLS12381{})
gob.Register(&EntityKey_IBE_BLS12381{})
gob.Register(&EntitySecretKey_IBE_BLS12381{})
gob.Register(&EntityKey_OAQUE_BLS12381_S20_Params{})
gob.Register(&EntitySecretKey_OAQUE_BLS12381_S20_Master{})
gob.Register(&EntityKey_OAQUE_BLS12381_S20{})
gob.Register(&EntitySecretKey_OAQUE_BLS12381_S20{})
gob.Register(&LocationSchemeInstanceURL{})
gob.Register(&HashSchemeInstance_Keccak_256{})
gob.Register(&HashSchemeInstance_Sha3_256{})
gob.Register(&CommitmentRevocationSchemeInstance{})
}