type crypto/internal/fips140/mlkem.EncapsulationKey1024

13 uses

	crypto/internal/fips140/mlkem (current package)
		mlkem1024.go#L65: func (dk *DecapsulationKey1024) EncapsulationKey() *EncapsulationKey1024 {
		mlkem1024.go#L66: 	return &EncapsulationKey1024{
		mlkem1024.go#L75: type EncapsulationKey1024 struct {
		mlkem1024.go#L82: func (ek *EncapsulationKey1024) Bytes() []byte {
		mlkem1024.go#L88: func (ek *EncapsulationKey1024) bytes(b []byte) []byte {
		mlkem1024.go#L281: func (ek *EncapsulationKey1024) Encapsulate() (sharedKey, ciphertext []byte) {
		mlkem1024.go#L287: func (ek *EncapsulationKey1024) encapsulate(cc *[CiphertextSize1024]byte) (sharedKey, ciphertext []byte) {
		mlkem1024.go#L298: func (ek *EncapsulationKey1024) EncapsulateInternal(m *[32]byte) (sharedKey, ciphertext []byte) {
		mlkem1024.go#L306: func kemEncaps1024(cc *[CiphertextSize1024]byte, ek *EncapsulationKey1024, m *[messageSize]byte) (K, c []byte) {
		mlkem1024.go#L318: func NewEncapsulationKey1024(encapsulationKey []byte) (*EncapsulationKey1024, error) {
		mlkem1024.go#L320: 	ek := &EncapsulationKey1024{}
		mlkem1024.go#L328: func parseEK1024(ek *EncapsulationKey1024, ekPKE []byte) (*EncapsulationKey1024, error) {