Home
last modified time | relevance | path

Searched defs:ctx (Results 1 – 25 of 140) sorted by relevance

123456

/xnu-8792.41.9/libkern/crypto/
H A Dcorecrypto_chacha20poly1305.c46 chacha20poly1305_init(chacha20poly1305_ctx *ctx, const uint8_t *key) in chacha20poly1305_init()
52 chacha20poly1305_reset(chacha20poly1305_ctx *ctx) in chacha20poly1305_reset()
58 chacha20poly1305_setnonce(chacha20poly1305_ctx *ctx, const uint8_t *nonce) in chacha20poly1305_setnonce()
64 chacha20poly1305_incnonce(chacha20poly1305_ctx *ctx, uint8_t *nonce) in chacha20poly1305_incnonce()
70 chacha20poly1305_aad(chacha20poly1305_ctx *ctx, size_t nbytes, const void *aad) in chacha20poly1305_aad()
76 chacha20poly1305_encrypt(chacha20poly1305_ctx *ctx, size_t nbytes, const void *ptext, void *ctext) in chacha20poly1305_encrypt()
82 chacha20poly1305_finalize(chacha20poly1305_ctx *ctx, uint8_t *tag) in chacha20poly1305_finalize()
88 chacha20poly1305_decrypt(chacha20poly1305_ctx *ctx, size_t nbytes, const void *ctext, void *ptext) in chacha20poly1305_decrypt()
94 chacha20poly1305_verify(chacha20poly1305_ctx *ctx, const uint8_t *tag) in chacha20poly1305_verify()
H A Dcorecrypto_sha2.c38 SHA256_Init(SHA256_CTX *ctx) in SHA256_Init()
52 SHA256_Update(SHA256_CTX *ctx, const void *data, size_t len) in SHA256_Update()
61 SHA256_Final(void *digest, SHA256_CTX *ctx) in SHA256_Final()
70 SHA384_Init(SHA384_CTX *ctx) in SHA384_Init()
84 SHA384_Update(SHA384_CTX *ctx, const void *data, size_t len) in SHA384_Update()
94 SHA384_Final(void *digest, SHA384_CTX *ctx) in SHA384_Final()
103 SHA512_Init(SHA512_CTX *ctx) in SHA512_Init()
117 SHA512_Update(SHA512_CTX *ctx, const void *data, size_t len) in SHA512_Update()
126 SHA512_Final(void *digest, SHA512_CTX *ctx) in SHA512_Final()
H A Dcorecrypto_aes.c135 aes_encrypt_key_gcm(const unsigned char *key, int key_len, ccgcm_ctx *ctx) in aes_encrypt_key_gcm()
146 …_key_with_iv_gcm(const unsigned char *key, int key_len, const unsigned char *in_iv, ccgcm_ctx *ctx) in aes_encrypt_key_with_iv_gcm()
157 aes_encrypt_set_iv_gcm(const unsigned char *in_iv, unsigned int len, ccgcm_ctx *ctx) in aes_encrypt_set_iv_gcm()
168 aes_encrypt_reset_gcm(ccgcm_ctx *ctx) in aes_encrypt_reset_gcm()
179 aes_encrypt_inc_iv_gcm(unsigned char *out_iv, ccgcm_ctx *ctx) in aes_encrypt_inc_iv_gcm()
190 aes_encrypt_aad_gcm(const unsigned char *aad, unsigned int aad_bytes, ccgcm_ctx *ctx) in aes_encrypt_aad_gcm()
202 unsigned char *out_blk, ccgcm_ctx *ctx) in aes_encrypt_gcm()
213 aes_encrypt_finalize_gcm(unsigned char *tag, size_t tag_bytes, ccgcm_ctx *ctx) in aes_encrypt_finalize_gcm()
229 aes_decrypt_key_gcm(const unsigned char *key, int key_len, ccgcm_ctx *ctx) in aes_decrypt_key_gcm()
240 …_key_with_iv_gcm(const unsigned char *key, int key_len, const unsigned char *in_iv, ccgcm_ctx *ctx) in aes_decrypt_key_with_iv_gcm()
[all …]
H A Dcorecrypto_md5.c7 getCount(MD5_CTX *ctx) in getCount()
13 setCount(MD5_CTX *ctx, uint64_t count) in setCount()
41 MD5Init(MD5_CTX *ctx) in MD5Init()
52 MD5Update(MD5_CTX *ctx, const void *data, unsigned int len) in MD5Update()
63 MD5Final(unsigned char digest[MD5_DIGEST_LENGTH], MD5_CTX *ctx) in MD5Final()
H A Dcorecrypto_sha1.c8 getCount(SHA1_CTX *ctx) in getCount()
14 setCount(SHA1_CTX *ctx, uint64_t count) in setCount()
41 SHA1Init(SHA1_CTX *ctx) in SHA1Init()
52 SHA1Update(SHA1_CTX *ctx, const void *data, size_t len) in SHA1Update()
63 SHA1Final(void *digest, SHA1_CTX *ctx) in SHA1Final()
/xnu-8792.41.9/libkern/os/
H A Dlog_encode.c41 #define log_context_cursor(ctx) &(ctx)->ctx_hdr->hdr_data[(ctx)->ctx_content_off] argument
78 log_context_cursor_advance(os_log_context_t ctx, size_t amount) in log_context_cursor_advance()
85 log_fits(os_log_context_t ctx, size_t data_size) in log_fits()
91 log_fits_cmd(os_log_context_t ctx, size_t data_size) in log_fits_cmd()
115 log_add_cmd(os_log_context_t ctx, os_log_fmt_cmd_type_t type, uint8_t flags, in log_add_cmd()
139 log_collect_public_range_data(os_log_context_t ctx, os_log_fmt_range_t range, void *arg) in log_collect_public_range_data()
146 log_add_range_data(os_log_context_t ctx, os_log_fmt_range_t range, void *arg) in log_add_range_data()
154 log_create_range(os_log_context_t ctx, size_t arg_len) in log_create_range()
166 log_add_range_arg(os_log_context_t ctx, os_log_fmt_cmd_type_t type, os_log_fmt_cmd_flags_t flags, in log_add_range_arg()
194 log_add_arg(os_log_context_t ctx, os_log_fmt_cmd_type_t type, void *arg, size_t arg_len) in log_add_arg()
[all …]
/xnu-8792.41.9/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c172 devfs_mount(struct mount *mp, __unused vnode_t devvp, __unused user_addr_t data, vfs_context_t ctx) in devfs_mount()
233 devfs_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t ctx) in devfs_start()
242 devfs_unmount( struct mount *mp, int mntflags, __unused vfs_context_t ctx) in devfs_unmount()
273 devfs_root(struct mount *mp, struct vnode **vpp, __unused vfs_context_t ctx) in devfs_root()
287 devfs_statfs( struct mount *mp, struct vfsstatfs *sbp, __unused vfs_context_t ctx) in devfs_statfs()
314 devfs_vfs_getattr(__unused mount_t mp, struct vfs_attr *fsap, __unused vfs_context_t ctx) in devfs_vfs_getattr()
442 devfs_sync(__unused struct mount *mp, __unused int waitfor, __unused vfs_context_t ctx) in devfs_sync()
449 …ed struct mount *mp, __unused ino64_t ino, __unused struct vnode **vpp, __unused vfs_context_t ctx) in devfs_vget()
460 …ed int fhlen, __unused unsigned char *fhp, __unused struct vnode **vpp, __unused vfs_context_t ctx) in devfs_fhtovp()
467 …ed struct vnode *vp, __unused int *fhlenp, __unused unsigned char *fhp, __unused vfs_context_t ctx) in devfs_vptofh()
[all …]
/xnu-8792.41.9/security/
H A Dmac_vfs.c363 mac_vnode_label_associate(struct mount *mp, struct vnode *vp, vfs_context_t ctx) in mac_vnode_label_associate()
446 mac_vnode_notify_create(vfs_context_t ctx, struct mount *mp, in mac_vnode_notify_create()
471 mac_vnode_notify_rename(vfs_context_t ctx, struct vnode *fvp, in mac_vnode_notify_rename()
518 mac_vnode_notify_open(vfs_context_t ctx, struct vnode *vp, int acc_flags) in mac_vnode_notify_open()
538 mac_vnode_notify_link(vfs_context_t ctx, struct vnode *vp, in mac_vnode_notify_link()
559 mac_vnode_notify_deleteextattr(vfs_context_t ctx, struct vnode *vp, const char *name) in mac_vnode_notify_deleteextattr()
579 mac_vnode_notify_setacl(vfs_context_t ctx, struct vnode *vp, struct kauth_acl *acl) in mac_vnode_notify_setacl()
599 mac_vnode_notify_setattrlist(vfs_context_t ctx, struct vnode *vp, struct attrlist *alist) in mac_vnode_notify_setattrlist()
619 mac_vnode_notify_setextattr(vfs_context_t ctx, struct vnode *vp, const char *name, struct uio *uio) in mac_vnode_notify_setextattr()
639 mac_vnode_notify_setflags(vfs_context_t ctx, struct vnode *vp, u_long flags) in mac_vnode_notify_setflags()
[all …]
H A Dmac_vfs_subr.c46 struct componentname *cnp, int flags, vfs_context_t ctx) in vnode_label()
168 vfs_context_t ctx; in mac_vnop_setxattr() local
199 vfs_context_t ctx = vfs_context_current(); in mac_vnop_getxattr() local
218 vfs_context_t ctx = vfs_context_current(); in mac_vnop_removexattr() local
/xnu-8792.41.9/osfmk/kern/
H A Dworkload_config.c98 workload_config_hash(workload_config_ctx_t *ctx, const char *id) in workload_config_hash()
105 workload_config_init(workload_config_ctx_t *ctx) in workload_config_init()
134 workload_config_initialized(const workload_config_ctx_t *ctx) in workload_config_initialized()
140 workload_config_free(workload_config_ctx_t *ctx) in workload_config_free()
184 lookup_entry(workload_config_ctx_t *ctx, const char *id) in lookup_entry()
205 lookup_config(__assert_only workload_config_ctx_t *ctx, in lookup_config()
227 insert_config(workload_config_ctx_t *ctx, workload_config_entry_t *entry, in insert_config()
258 insert_entry(workload_config_ctx_t *ctx, const char *id, const char *phase, in insert_entry()
293 workload_config_insert(workload_config_ctx_t *ctx, const char *id, in workload_config_insert()
361 workload_config_ctx_t *ctx = get_ctx_locked(); in workload_config_lookup() local
[all …]
/xnu-8792.41.9/bsd/miscfs/routefs/
H A Droutefs_ops.c82 routefs_mount(struct mount *mp, __unused vnode_t devvp, user_addr_t data, vfs_context_t ctx) in routefs_mount()
171 routefs_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t ctx) in routefs_start()
180 routefs_unmount( struct mount *mp, int mntflags, __unused vfs_context_t ctx) in routefs_unmount()
215 routefs_root(struct mount *mp, struct vnode **vpp, __unused vfs_context_t ctx) in routefs_root()
257 routefs_statfs( struct mount *mp, struct vfsstatfs *sbp, __unused vfs_context_t ctx) in routefs_statfs()
280 routefs_vfs_getattr(__unused mount_t mp, struct vfs_attr *fsap, __unused vfs_context_t ctx) in routefs_vfs_getattr()
404 routefs_sync(__unused struct mount *mp, __unused int waitfor, __unused vfs_context_t ctx) in routefs_sync()
411 …ed struct mount *mp, __unused ino64_t ino, __unused struct vnode **vpp, __unused vfs_context_t ctx) in routefs_vget()
417 …ed int fhlen, __unused unsigned char *fhp, __unused struct vnode **vpp, __unused vfs_context_t ctx) in routefs_fhtovp()
424 …ed struct vnode *vp, __unused int *fhlenp, __unused unsigned char *fhp, __unused vfs_context_t ctx) in routefs_vptofh()
[all …]
/xnu-8792.41.9/bsd/vfs/
H A Dkpi_vfs.c193 VFS_MOUNT(mount_t mp, vnode_t devvp, user_addr_t data, vfs_context_t ctx) in VFS_MOUNT()
215 VFS_START(mount_t mp, int flags, vfs_context_t ctx) in VFS_START()
229 VFS_UNMOUNT(mount_t mp, int flags, vfs_context_t ctx) in VFS_UNMOUNT()
260 VFS_ROOT(mount_t mp, struct vnode ** vpp, vfs_context_t ctx) in VFS_ROOT()
278 VFS_QUOTACTL(mount_t mp, int cmd, uid_t uid, caddr_t datap, vfs_context_t ctx) in VFS_QUOTACTL()
292 VFS_GETATTR(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx) in VFS_GETATTR()
310 VFS_SETATTR(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx) in VFS_SETATTR()
328 VFS_SYNC(mount_t mp, int flags, vfs_context_t ctx) in VFS_SYNC()
346 VFS_VGET(mount_t mp, ino64_t ino, struct vnode **vpp, vfs_context_t ctx) in VFS_VGET()
364 VFS_FHTOVP(mount_t mp, int fhlen, unsigned char *fhp, vnode_t *vpp, vfs_context_t ctx) in VFS_FHTOVP()
[all …]
H A Dvfs_vnops.c189 vn_open_auth_finish(vnode_t vp, int fmode, vfs_context_t ctx) in vn_open_auth_finish()
217 …, struct vnode_attr *vap, int fmode, boolean_t *did_create, boolean_t *did_open, vfs_context_t ctx) in vn_open_auth_do_create()
383 vfs_context_t ctx = ndp->ni_cnd.cn_context; in vn_open_auth() local
795 vn_close(struct vnode *vp, int flags, vfs_context_t ctx) in vn_close()
1056 vn_read_common(vnode_t vp, struct uio *uio, int fflag, vfs_context_t ctx) in vn_read_common()
1152 vn_read(struct fileproc *fp, struct uio *uio, int flags, vfs_context_t ctx) in vn_read()
1206 vn_write(struct fileproc *fp, struct uio *uio, int flags, vfs_context_t ctx) in vn_write()
1459 int needsrealdev, vfs_context_t ctx, struct ucred *file_cred) in vn_stat_noauth()
1650 …ruct vnode *vp, void *sb, kauth_filesec_t *xsec, int isstat64, int needsrealdev, vfs_context_t ctx) in vn_stat()
1675 vn_ioctl(struct fileproc *fp, u_long com, caddr_t data, vfs_context_t ctx) in vn_ioctl()
[all …]
/xnu-8792.41.9/tests/recount/
H A Drecount_perf_tests.c154 proc_pidtaskinfo_usage(void *ctx) in proc_pidtaskinfo_usage()
181 proc_pidtaskinfo_measurement(metrics_t metric, void *ctx) in proc_pidtaskinfo_measurement()
195 proc_pid_rusage_usage(void *ctx) in proc_pid_rusage_usage()
222 proc_pid_rusage_measurement(metrics_t metric, void *ctx) in proc_pid_rusage_measurement()
240 getrusage_measurement(metrics_t metric, void *ctx) in getrusage_measurement()
255 getrusage_usage(void *ctx) in getrusage_usage()
281 thread_selfcounts_usage(void *ctx) in thread_selfcounts_usage()
306 thread_selfcounts_measurement(metrics_t metric, void *ctx) in thread_selfcounts_measurement()
323 thread_selfusage_usage(void *ctx) in thread_selfusage_usage()
332 thread_selfusage_measurement(metrics_t metric, void *ctx) in thread_selfusage_measurement()
[all …]
/xnu-8792.41.9/EXTERNAL_HEADERS/corecrypto/
H A Dccmode.h42 CC_INLINE int ccecb_init(const struct ccmode_ecb *mode, ccecb_ctx *ctx, size_t key_len, const void … in ccecb_init()
47 CC_INLINE int ccecb_update(const struct ccmode_ecb *mode, const ccecb_ctx *ctx, size_t nblocks, con… in ccecb_update()
95 CC_INLINE int cccbc_init(const struct ccmode_cbc *mode, cccbc_ctx *ctx, size_t key_len, const void … in cccbc_init()
119 CC_INLINE int cccbc_update(const struct ccmode_cbc *mode, cccbc_ctx *ctx, cccbc_iv *iv, size_t nblo… in cccbc_update()
149 CC_INLINE int cccfb_init(const struct ccmode_cfb *mode, cccfb_ctx *ctx, size_t key_len, const void … in cccfb_init()
154 CC_INLINE int cccfb_update(const struct ccmode_cfb *mode, cccfb_ctx *ctx, size_t nbytes, const void… in cccfb_update()
194 CC_INLINE int cccfb8_init(const struct ccmode_cfb8 *mode, cccfb8_ctx *ctx, size_t key_len, const vo… in cccfb8_init()
199 CC_INLINE int cccfb8_update(const struct ccmode_cfb8 *mode, cccfb8_ctx *ctx, size_t nbytes, const v… in cccfb8_update()
243 CC_INLINE int ccctr_init(const struct ccmode_ctr *mode, ccctr_ctx *ctx, size_t key_len, const void … in ccctr_init()
248 CC_INLINE int ccctr_update(const struct ccmode_ctr *mode, ccctr_ctx *ctx, size_t nbytes, const void… in ccctr_update()
[all …]
H A Dccmode_siv.h129 CC_INLINE int ccsiv_init(const struct ccmode_siv *mode, ccsiv_ctx *ctx, in ccsiv_init()
149 CC_INLINE int ccsiv_set_nonce(const struct ccmode_siv *mode, ccsiv_ctx *ctx, in ccsiv_set_nonce()
165 CC_INLINE int ccsiv_aad(const struct ccmode_siv *mode, ccsiv_ctx *ctx, in ccsiv_aad()
198 CC_INLINE int ccsiv_crypt(const struct ccmode_siv *mode, ccsiv_ctx *ctx, in ccsiv_crypt()
211 CC_INLINE int ccsiv_reset(const struct ccmode_siv *mode, ccsiv_ctx *ctx) in ccsiv_reset()
/xnu-8792.41.9/bsd/miscfs/bindfs/
H A Dbind_vfsops.c87 bindfs_vfs_getlowerattr(mount_t mp, struct vfs_attr * vfap, vfs_context_t ctx) in bindfs_vfs_getlowerattr()
108 bindfs_mount(struct mount * mp, __unused vnode_t devvp, user_addr_t user_data, vfs_context_t ctx) in bindfs_mount()
310 bindfs_unmount(struct mount * mp, int mntflags, __unused vfs_context_t ctx) in bindfs_unmount()
371 bindfs_root(struct mount * mp, struct vnode ** vpp, __unused vfs_context_t ctx) in bindfs_root()
393 bindfs_vfs_getattr(struct mount * mp, struct vfs_attr * vfap, vfs_context_t ctx) in bindfs_vfs_getattr()
525 bindfs_sync(__unused struct mount * mp, __unused int waitfor, __unused vfs_context_t ctx) in bindfs_sync()
533 bindfs_vfs_start(__unused struct mount * mp, __unused int flags, __unused vfs_context_t ctx) in bindfs_vfs_start()
/xnu-8792.41.9/bsd/kern/
H A Dsys_socket.c114 __unused vfs_context_t ctx) in soo_read()
137 vfs_context_t ctx) in soo_write()
287 soo_ioctl(struct fileproc *fp, u_long cmd, caddr_t data, vfs_context_t ctx) in soo_ioctl()
301 soo_select(struct fileproc *fp, int which, void *wql, vfs_context_t ctx) in soo_select()
409 soo_close(struct fileglob *fg, __unused vfs_context_t ctx) in soo_close()
425 soo_drain(struct fileproc *fp, __unused vfs_context_t ctx) in soo_drain()
/xnu-8792.41.9/bsd/miscfs/nullfs/
H A Dnull_vfsops.c87 nullfs_vfs_getlowerattr(mount_t mp, struct vfs_attr * vfap, vfs_context_t ctx) in nullfs_vfs_getlowerattr()
108 nullfs_mount(struct mount * mp, __unused vnode_t devvp, user_addr_t user_data, vfs_context_t ctx) in nullfs_mount()
328 nullfs_unmount(struct mount * mp, int mntflags, __unused vfs_context_t ctx) in nullfs_unmount()
395 nullfs_root(struct mount * mp, struct vnode ** vpp, __unused vfs_context_t ctx) in nullfs_root()
417 nullfs_vfs_getattr(struct mount * mp, struct vfs_attr * vfap, vfs_context_t ctx) in nullfs_vfs_getattr()
552 nullfs_sync(__unused struct mount * mp, __unused int waitfor, __unused vfs_context_t ctx) in nullfs_sync()
563 nullfs_vfs_start(__unused struct mount * mp, __unused int flags, __unused vfs_context_t ctx) in nullfs_vfs_start()
/xnu-8792.41.9/bsd/miscfs/mockfs/
H A Dmockfs_vfsops.c65 mockfs_mountroot(mount_t mp, vnode_t rvp, __unused vfs_context_t ctx) in mockfs_mountroot()
156 mockfs_unmount(struct mount *mp, int mntflags, __unused vfs_context_t ctx) in mockfs_unmount()
208 mockfs_root(mount_t mp, vnode_t * vpp, __unused vfs_context_t ctx) in mockfs_root()
223 mockfs_sync(__unused struct mount *mp, __unused int waitfor, __unused vfs_context_t ctx) in mockfs_sync()
/xnu-8792.41.9/bsd/vm/
H A Dvm_compressor_backing_file.c62 vfs_context_t ctx = vfs_context_kernel(); in vm_swapfile_open() local
124 vfs_context_t ctx = NULL; in vm_swapfile_preallocate() local
181 vfs_context_t ctx; in vm_record_file_write() local
271 vfs_context_t ctx; in vm_swapfile_io() local
405 vfs_context_t ctx = vfs_context_kernel(); in vm_swap_vol_get_budget() local
426 vfs_context_t ctx = vfs_context_kernel(); in vm_swap_vol_get_capacity() local
/xnu-8792.41.9/tools/lldbmacros/
H A Dstructanalyze.py11 def _get_offset_formatter(ctx, fmt_hex, fmt_dec): argument
29 def _get_num_formatter(ctx, fmt_hex, fmt_dec): argument
47 def _showStructPacking(ctx, symbol, begin_offset=0, symsize=0, typedef=None, outerSize=0, memberNam… argument
/xnu-8792.41.9/osfmk/arm64/
H A Dhibernate_restore.c87 pal_hib_resume_init(pal_hib_ctx_t *ctx, hibernate_page_list_t *map, uint32_t *nextFree) in pal_hib_resume_init()
92 pal_hib_restored_page(pal_hib_ctx_t *ctx, pal_hib_restore_stage_t stage, ppnum_t ppnum) in pal_hib_restored_page()
97 pal_hib_patchup(pal_hib_ctx_t *ctx) in pal_hib_patchup()
184 allocate_page(map_ctx *ctx) in allocate_page()
198 create_map_entries(map_ctx *ctx, uint64_t vaddr, uint64_t paddr, uint64_t size, uint64_t map_flags) in create_map_entries()
268 map_range_start_end(map_ctx *ctx, uint64_t start, uint64_t end, uint64_t slide, uint64_t flags) in map_range_start_end()
281 map_register_page(map_ctx *ctx, vm_address_t regPage) in map_register_page()
313 __block map_ctx ctx = {}; in pal_hib_resume_tramp() local
/xnu-8792.41.9/osfmk/i386/
H A Dhibernate_restore.c113 pal_hib_resume_init(__unused pal_hib_ctx_t *ctx, __unused hibernate_page_list_t *map, __unused uint… in pal_hib_resume_init()
118 pal_hib_restored_page(__unused pal_hib_ctx_t *ctx, __unused pal_hib_restore_stage_t stage, __unused… in pal_hib_restored_page()
123 pal_hib_patchup(__unused pal_hib_ctx_t *ctx) in pal_hib_patchup()
/xnu-8792.41.9/bsd/nfs/gss/
H A Dgss_krb5_mech.c453 …t, size_t len, size_t blocksize, int (*crypto_fn)(void *, uint8_t *data, size_t length), void *ctx) in mbuf_walk() argument
607 krb5_mic(crypto_ctx_t ctx, gss_buffer_t header, gss_buffer_t bp, gss_buffer_t trailer, uint8_t *mic… in krb5_mic()
657 krb5_mic_mbuf(crypto_ctx_t ctx, gss_buffer_t header, in krb5_mic_mbuf()
719 krb5_crypt_mbuf(crypto_ctx_t ctx, mbuf_t *mbp, size_t len, int encrypt, cccbc_ctx *ks) in krb5_crypt_mbuf()
942 krb5_key_derivation(crypto_ctx_t ctx, const void *cons, size_t conslen, krb5_key_t *dkey, size_t dk… in krb5_key_derivation()
981 krb5_3des_key_derivation(crypto_ctx_t ctx, const void *cons, size_t conslen, krb5_key_t *des3key) in krb5_3des_key_derivation()
1008 cc_key_schedule_create(crypto_ctx_t ctx) in cc_key_schedule_create()
1062 gss_crypto_ctx_free(crypto_ctx_t ctx) in gss_crypto_ctx_free()
1083 gss_crypto_ctx_init(struct crypto_ctx *ctx, lucid_context_t lucid) in gss_crypto_ctx_init()
1185 gss_krb5_cfx_verify_mic_token(gss_ctx_id_t ctx, gss_cfx_mic_token token) in gss_krb5_cfx_verify_mic_token()
[all …]

123456