aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/smp.h
AgeCommit message (Expand)Author
2018-11-04Bluetooth: SMP: fix crash in unpairingMatias Karhumaa
2016-12-08Bluetooth: SMP: Add support for H7 crypto function and CT2 auth flagJohan Hedberg
2015-10-22Bluetooth: Fix crash in SMP when unpairingJohan Hedberg
2015-03-16Bluetooth: Add function for generating LE SC out-of-band dataMarcel Holtmann
2014-12-30Bluetooth: Add skeleton for SMP self-testsJohan Hedberg
2014-12-03Bluetooth: Fix missing const declarations in SMP functionsJohan Hedberg
2014-12-03Bluetooth: Set the correct security level for SC LTKsJohan Hedberg
2014-12-03Bluetooth: Add mgmt support for LE Secure Connections LTK typesJohan Hedberg
2014-12-03Bluetooth: Add basic SMP defines for LE Secure ConnectionsJohan Hedberg
2014-11-15Bluetooth: Add key preference parameter to smp_sufficient_securityJohan Hedberg
2014-09-11Bluetooth: Add smp_ltk_sec_level() helper functionJohan Hedberg
2014-09-08Bluetooth: Add strict checks for allowed SMP PDUsJohan Hedberg
2014-08-14Bluetooth: Make smp_chan_destroy() private to smp.cJohan Hedberg
2014-08-14Bluetooth: Use L2CAP resume callback to call smp_distribute_keysJohan Hedberg
2014-08-14Bluetooth: Convert SMP to use l2cap_chan infrastructureJohan Hedberg
2014-08-14Bluetooth: Make AES crypto context private to SMPJohan Hedberg
2014-08-14Bluetooth: Move SMP (de)initialization to smp.cJohan Hedberg
2014-07-03Bluetooth: Remove HCI prefix from SMP LTK definesJohan Hedberg
2014-05-20Bluetooth: Make SMP context private to smp.cJohan Hedberg
2014-05-08Bluetooth: Add support for SMP Invalid Parameters error codeJohan Hedberg
2014-03-24Bluetooth: Remove LTK re-encryption procedureJohan Hedberg
2014-03-24Bluetooth: Add SMP flag to track which side is the initiatorJohan Hedberg
2014-03-19Bluetooth: Increase SMP re-encryption delay to 500msJohan Hedberg
2014-03-09Bluetooth: Add support for handling signature resolving keysMarcel Holtmann
2014-02-28Bluetooth: Delay LTK encryption to let remote receive all keysJohan Hedberg
2014-02-28Bluetooth: Re-encrypt link after receiving an LTKJohan Hedberg
2014-02-28Bluetooth: Use __le64 type for LE random numbersMarcel Holtmann
2014-02-26Bluetooth: Remove unneeded "force" parameter from smp_distribute_keys()Johan Hedberg
2014-02-23Bluetooth: Add SMP function for generating RPAsJohan Hedberg
2014-02-19Bluetooth: Track SMP keys in the SMP contextJohan Hedberg
2014-02-18Bluetooth: Wait for SMP key distribution completion when pairingJohan Hedberg
2014-02-18Bluetooth: Remove SMP data specific crypto contextJohan Hedberg
2014-02-18Bluetooth: Enable support for remote IRK distributionJohan Hedberg
2014-02-18Bluetooth: Add smp_irk_matches helper functionJohan Hedberg
2014-02-18Bluetooth: Fix minor whitespace issues in SMP codeJohan Hedberg
2013-12-05Bluetooth: Add smp_sufficient_security helper functionJohan Hedberg
2013-10-11Bluetooth: Move smp.h header file into net/bluetooth/Marcel Holtmann
.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
#
# Makefile for RTC class/drivers.
#

ifeq ($(CONFIG_RTC_DEBUG),y)
	EXTRA_CFLAGS		+= -DDEBUG
endif

obj-$(CONFIG_RTC_LIB)		+= rtc-lib.o
obj-$(CONFIG_RTC_HCTOSYS)	+= hctosys.o
obj-$(CONFIG_RTC_CLASS)		+= rtc-core.o
rtc-core-y			:= class.o interface.o

rtc-core-$(CONFIG_RTC_INTF_DEV)	+= rtc-dev.o
rtc-core-$(CONFIG_RTC_INTF_PROC) += rtc-proc.o
rtc-core-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o

obj-$(CONFIG_RTC_DRV_CMOS)	+= rtc-cmos.o
obj-$(CONFIG_RTC_DRV_X1205)	+= rtc-x1205.o
obj-$(CONFIG_RTC_DRV_ISL1208)	+= rtc-isl1208.o
obj-$(CONFIG_RTC_DRV_TEST)	+= rtc-test.o
obj-$(CONFIG_RTC_DRV_DS1307)	+= rtc-ds1307.o
obj-$(CONFIG_RTC_DRV_DS1672)	+= rtc-ds1672.o
obj-$(CONFIG_RTC_DRV_DS1742)	+= rtc-ds1742.o
obj-$(CONFIG_RTC_DRV_OMAP)	+= rtc-omap.o
obj-$(CONFIG_RTC_DRV_PCF8563)	+= rtc-pcf8563.o
obj-$(CONFIG_RTC_DRV_PCF8583)	+= rtc-pcf8583.o
obj-$(CONFIG_RTC_DRV_RS5C372)	+= rtc-rs5c372.o
obj-$(CONFIG_RTC_DRV_S3C)	+= rtc-s3c.o
obj-$(CONFIG_RTC_DRV_RS5C348)	+= rtc-rs5c348.o
obj-$(CONFIG_RTC_DRV_M48T86)	+= rtc-m48t86.o
obj-$(CONFIG_RTC_DRV_DS1553)	+= rtc-ds1553.o
obj-$(CONFIG_RTC_DRV_RS5C313)	+= rtc-rs5c313.o
obj-$(CONFIG_RTC_DRV_EP93XX)	+= rtc-ep93xx.o
obj-$(CONFIG_RTC_DRV_SA1100)	+= rtc-sa1100.o
obj-$(CONFIG_RTC_DRV_VR41XX)	+= rtc-vr41xx.o
obj-$(CONFIG_RTC_DRV_PL031)	+= rtc-pl031.o
obj-$(CONFIG_RTC_DRV_MAX6900)	+= rtc-max6900.o
obj-$(CONFIG_RTC_DRV_MAX6902)	+= rtc-max6902.o
obj-$(CONFIG_RTC_DRV_V3020)	+= rtc-v3020.o
obj-$(CONFIG_RTC_DRV_AT91RM9200)+= rtc-at91rm9200.o
obj-$(CONFIG_RTC_DRV_SH)	+= rtc-sh.o
obj-$(CONFIG_RTC_DRV_BFIN)	+= rtc-bfin.o