search for: crypto_blkcipher

Displaying 20 results from an estimated 49 matches for "crypto_blkcipher".

Did you mean: crypto_ablkcipher
2016 Nov 29
3
[PATCH v3] crypto: add virtio-crypto driver
...> > @@ -0,0 +1,10 @@ > > > > +config CRYPTO_DEV_VIRTIO > > > > + tristate "VirtIO crypto driver" > > > > + depends on VIRTIO > > > > + select CRYPTO_AEAD > > > > + select CRYPTO_AUTHENC > > > > + select CRYPTO_BLKCIPHER > > > > > > Inconsistent tab vs space whitespace usage. > > > > Will fix. > > > > > + default m > > > > + help > > > > + This driver provides support for virtio crypto device. If you > > > > + choose 'M' h...
2016 Nov 29
3
[PATCH v3] crypto: add virtio-crypto driver
...> > @@ -0,0 +1,10 @@ > > > > +config CRYPTO_DEV_VIRTIO > > > > + tristate "VirtIO crypto driver" > > > > + depends on VIRTIO > > > > + select CRYPTO_AEAD > > > > + select CRYPTO_AUTHENC > > > > + select CRYPTO_BLKCIPHER > > > > > > Inconsistent tab vs space whitespace usage. > > > > Will fix. > > > > > + default m > > > > + help > > > > + This driver provides support for virtio crypto device. If you > > > > + choose 'M' h...
2016 Nov 29
1
[PATCH v3] crypto: add virtio-crypto driver
...nfig CRYPTO_DEV_VIRTIO > > > > > > + tristate "VirtIO crypto driver" > > > > > > + depends on VIRTIO > > > > > > + select CRYPTO_AEAD > > > > > > + select CRYPTO_AUTHENC > > > > > > + select CRYPTO_BLKCIPHER > > > > > > > > > > Inconsistent tab vs space whitespace usage. > > > > > > > > Will fix. > > > > > > > > > + default m > > > > > > + help > > > > > > + This driver provides suppo...
2016 Nov 29
1
[PATCH v3] crypto: add virtio-crypto driver
...nfig CRYPTO_DEV_VIRTIO > > > > > > + tristate "VirtIO crypto driver" > > > > > > + depends on VIRTIO > > > > > > + select CRYPTO_AEAD > > > > > > + select CRYPTO_AUTHENC > > > > > > + select CRYPTO_BLKCIPHER > > > > > > > > > > Inconsistent tab vs space whitespace usage. > > > > > > > > Will fix. > > > > > > > > > + default m > > > > > > + help > > > > > > + This driver provides suppo...
2014 Feb 24
3
nut in openwrt
...324014 0 bcma 28621 1 b43, button_hotplug 2800 0 cfg80211 172273 2 b43,mac80211, cifs 190077 0 compat 651 3 b43,mac80211,cfg80211, crc16 1015 1 ext4, crc_ccitt 1019 1 ppp_async, crypto_blkcipher 10343 2 ecb,arc4, crypto_hash 9546 7 cifs,sha256_generic,md5,md4,hmac,ext4,jbd2, des_generic 19817 0 ecb 1328 0 ehci_hcd 38172 1 ehci_platform, ehci_platform 1872 0 ext4 311657 0 gpio_keys_polled...
2014 Feb 24
0
nut in openwrt
...28621 1 b43, >button_hotplug 2800 0 >cfg80211 172273 2 b43,mac80211, >cifs 190077 0 >compat 651 3 b43,mac80211,cfg80211, >crc16 1015 1 ext4, >crc_ccitt 1019 1 ppp_async, >crypto_blkcipher 10343 2 ecb,arc4, >crypto_hash 9546 7 >cifs,sha256_generic,md5,md4,hmac,ext4,jbd2, >des_generic 19817 0 >ecb 1328 0 >ehci_hcd 38172 1 ehci_platform, >ehci_platform 1872 0 >ext4 31165...
2016 Nov 29
0
[PATCH v3] crypto: add virtio-crypto driver
...; > > > > +config CRYPTO_DEV_VIRTIO > > > > > + tristate "VirtIO crypto driver" > > > > > + depends on VIRTIO > > > > > + select CRYPTO_AEAD > > > > > + select CRYPTO_AUTHENC > > > > > + select CRYPTO_BLKCIPHER > > > > > > > > Inconsistent tab vs space whitespace usage. > > > > > > Will fix. > > > > > > > + default m > > > > > + help > > > > > + This driver provides support for virtio crypto device. If you >...
2014 Feb 24
1
nut in openwrt
...t;>button_hotplug 2800 0 >>cfg80211 172273 2 b43,mac80211, >>cifs 190077 0 >>compat 651 3 b43,mac80211,cfg80211, >>crc16 1015 1 ext4, >>crc_ccitt 1019 1 ppp_async, >>crypto_blkcipher 10343 2 ecb,arc4, >>crypto_hash 9546 7 >>cifs,sha256_generic,md5,md4,hmac,ext4,jbd2, >>des_generic 19817 0 >>ecb 1328 0 >>ehci_hcd 38172 1 ehci_platform, >>ehci_platform 1872 0 >&gt...
2014 Feb 23
0
nut in openwrt
[CC'ing the list] On Feb 23, 2014, at 3:06 PM, Tim Dawson wrote: > I don't think USB support is a given in OpwnWRT - some builds have it, some don't, and some are just a bit wonky. > Most USB builds support USB disk - the USB serial driver is a different beast, and even if one is there does not imply the other. > > I'd be interested in the output of 'lsmod',
2014 Feb 23
5
nut in openwrt
2014-02-23 17:57 GMT+01:00 Charles Lepple <clepple at gmail.com>: > On Feb 22, 2014, at 9:51 AM, Josu Lazkano wrote: > >> The problem is that I don't know where to configure it. >> >> Anyone with a UPS connect to a OpenWRT device? > > What version of OpenWRT? > > I haven't tried this myself, but it looks like recent versions of OpenWRT use UCI,
2016 Dec 27
1
[PATCH] virtio-crypto: support crypto engine framework
...rtions(+), 22 deletions(-) diff --git a/drivers/crypto/virtio/Kconfig b/drivers/crypto/virtio/Kconfig index d80f733..5db0749 100644 --- a/drivers/crypto/virtio/Kconfig +++ b/drivers/crypto/virtio/Kconfig @@ -4,6 +4,7 @@ config CRYPTO_DEV_VIRTIO select CRYPTO_AEAD select CRYPTO_AUTHENC select CRYPTO_BLKCIPHER + select CRYPTO_ENGINE default m help This driver provides support for virtio crypto device. If you diff --git a/drivers/crypto/virtio/virtio_crypto_algs.c b/drivers/crypto/virtio/virtio_crypto_algs.c index c2374df..970d0ca 100644 --- a/drivers/crypto/virtio/virtio_crypto_algs.c +++ b/drive...
2016 Dec 27
1
[PATCH] virtio-crypto: support crypto engine framework
...rtions(+), 22 deletions(-) diff --git a/drivers/crypto/virtio/Kconfig b/drivers/crypto/virtio/Kconfig index d80f733..5db0749 100644 --- a/drivers/crypto/virtio/Kconfig +++ b/drivers/crypto/virtio/Kconfig @@ -4,6 +4,7 @@ config CRYPTO_DEV_VIRTIO select CRYPTO_AEAD select CRYPTO_AUTHENC select CRYPTO_BLKCIPHER + select CRYPTO_ENGINE default m help This driver provides support for virtio crypto device. If you diff --git a/drivers/crypto/virtio/virtio_crypto_algs.c b/drivers/crypto/virtio/virtio_crypto_algs.c index c2374df..970d0ca 100644 --- a/drivers/crypto/virtio/virtio_crypto_algs.c +++ b/drive...
2009 Nov 23
18
OpenSuSE 11.2 bug, dom0-cpus limit causes xenwatch_cb running 100% and xm command freeze and xend dead
...d fan ide_pci_generic piix ide_core ata_generic ata_piix mptsas mptscsih mptbase scsi_transport_sas thermal processor thermal_sys hwmon Nov 23 13:55:14 dom0-u2 kernel: [ 3112.781517] CPU 4: Nov 23 13:55:14 dom0-u2 kernel: [ 3112.781517] Modules linked in: sha1_generic hmac cryptomgr aead pcompress crypto_blkcipher crypto_hash crypto_algapi drbd netbk blkbk blkback_pagemap blktap xenbus_be binfmt_misc xt_tcpudp ip6t_REJECT nf_conntrack_ipv6 ip6table_raw xt_NOTRACK ipt_REJECT xt_physdev xt_state iptable_raw iptable_filter ip6table_mangle nf_conntrack_netbios_ns nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 ip_...
2009 Jun 11
5
Problems with Broadcom 4312 wireless
...PCI Express (rev 02) 0c:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g (rev 01) //////////////////// Output from lsmod: Module Size Used by testmgr_cipher 6849 0 testmgr 44593 1 testmgr_cipher aead 11841 1 testmgr crypto_blkcipher 17601 1 testmgr crypto_algapi 22849 3 testmgr,aead,crypto_blkcipher arc4 6209 0 ieee80211_crypt_wep 9153 0 udf 78949 1 autofs4 24261 2 hidp 23105 2 rfcomm 42457 0 l2cap...
2016 Nov 28
5
[PATCH v3] crypto: add virtio-crypto driver
...100644 > index 0000000..ceae88c > --- /dev/null > +++ b/drivers/crypto/virtio/Kconfig > @@ -0,0 +1,10 @@ > +config CRYPTO_DEV_VIRTIO > + tristate "VirtIO crypto driver" > + depends on VIRTIO > + select CRYPTO_AEAD > + select CRYPTO_AUTHENC > + select CRYPTO_BLKCIPHER Inconsistent tab vs space whitespace usage. > + default m > + help > + This driver provides support for virtio crypto device. If you > + choose 'M' here, this module will be called virtio-crypto. All the other virtio drivers use underscore ('_') instead of hyphen...
2016 Nov 28
5
[PATCH v3] crypto: add virtio-crypto driver
...100644 > index 0000000..ceae88c > --- /dev/null > +++ b/drivers/crypto/virtio/Kconfig > @@ -0,0 +1,10 @@ > +config CRYPTO_DEV_VIRTIO > + tristate "VirtIO crypto driver" > + depends on VIRTIO > + select CRYPTO_AEAD > + select CRYPTO_AUTHENC > + select CRYPTO_BLKCIPHER Inconsistent tab vs space whitespace usage. > + default m > + help > + This driver provides support for virtio crypto device. If you > + choose 'M' here, this module will be called virtio-crypto. All the other virtio drivers use underscore ('_') instead of hyphen...
2016 Nov 27
2
[PATCH v2 2/2] crypto: add virtio-crypto driver
...100644 > index 0000000..ceae88c > --- /dev/null > +++ b/drivers/crypto/virtio/Kconfig > @@ -0,0 +1,10 @@ > +config CRYPTO_DEV_VIRTIO > + tristate "VirtIO crypto driver" > + depends on VIRTIO > + select CRYPTO_AEAD > + select CRYPTO_AUTHENC > + select CRYPTO_BLKCIPHER > + default m > + help > + This driver provides support for virtio crypto device. If you > + choose 'M' here, this module will be called virtio-crypto. > diff --git a/drivers/crypto/virtio/Makefile b/drivers/crypto/virtio/Makefile > new file mode 100644 > index 0000...
2016 Nov 27
2
[PATCH v2 2/2] crypto: add virtio-crypto driver
...100644 > index 0000000..ceae88c > --- /dev/null > +++ b/drivers/crypto/virtio/Kconfig > @@ -0,0 +1,10 @@ > +config CRYPTO_DEV_VIRTIO > + tristate "VirtIO crypto driver" > + depends on VIRTIO > + select CRYPTO_AEAD > + select CRYPTO_AUTHENC > + select CRYPTO_BLKCIPHER > + default m > + help > + This driver provides support for virtio crypto device. If you > + choose 'M' here, this module will be called virtio-crypto. > diff --git a/drivers/crypto/virtio/Makefile b/drivers/crypto/virtio/Makefile > new file mode 100644 > index 0000...
2016 Nov 28
0
[virtio-dev] Re: [PATCH v2 2/2] crypto: add virtio-crypto driver
...--- /dev/null > > +++ b/drivers/crypto/virtio/Kconfig > > @@ -0,0 +1,10 @@ > > +config CRYPTO_DEV_VIRTIO > > + tristate "VirtIO crypto driver" > > + depends on VIRTIO > > + select CRYPTO_AEAD > > + select CRYPTO_AUTHENC > > + select CRYPTO_BLKCIPHER > > + default m > > + help > > + This driver provides support for virtio crypto device. If you > > + choose 'M' here, this module will be called virtio-crypto. > > diff --git a/drivers/crypto/virtio/Makefile b/drivers/crypto/virtio/Makefile > > new fi...
2016 Nov 22
0
[PATCH v2 2/2] crypto: add virtio-crypto driver
...fig b/drivers/crypto/virtio/Kconfig new file mode 100644 index 0000000..ceae88c --- /dev/null +++ b/drivers/crypto/virtio/Kconfig @@ -0,0 +1,10 @@ +config CRYPTO_DEV_VIRTIO + tristate "VirtIO crypto driver" + depends on VIRTIO + select CRYPTO_AEAD + select CRYPTO_AUTHENC + select CRYPTO_BLKCIPHER + default m + help + This driver provides support for virtio crypto device. If you + choose 'M' here, this module will be called virtio-crypto. diff --git a/drivers/crypto/virtio/Makefile b/drivers/crypto/virtio/Makefile new file mode 100644 index 0000000..a316e92 --- /dev/null +++ b/dr...