github.com/gotd/td/internal/crypto.EncryptedMessage.EncryptedData (field)
11 uses
github.com/gotd/td/internal/crypto (current package)
cipher_decrypt.go#L70: if len(encrypted.EncryptedData)%16 != 0 {
cipher_decrypt.go#L79: plaintext := make([]byte, len(encrypted.EncryptedData))
cipher_decrypt.go#L80: ige.DecryptBlocks(cipher, iv[:], plaintext, encrypted.EncryptedData)
cipher_encrypt.go#L31: EncryptedData: make([]byte, len(plaintext.Buf)),
cipher_encrypt.go#L33: ige.EncryptBlocks(aesBlock, iv[:], msg.EncryptedData, plaintext.Buf)
encrypted_message.go#L10: EncryptedData []byte
encrypted_message.go#L26: e.EncryptedData = append(e.EncryptedData[:0], make([]byte, b.Len())...)
encrypted_message.go#L27: if err := b.ConsumeN(e.EncryptedData, b.Len()); err != nil {
encrypted_message.go#L47: e.EncryptedData = b.Buf
encrypted_message.go#L55: b.Put(e.EncryptedData)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |