Lines Matching refs:ks
61 typedef void init_func(struct krb5_key_state *ks);
62 typedef void destroy_func(struct krb5_key_state *ks);
63 typedef void set_key_func(struct krb5_key_state *ks, const void *in);
64 typedef void random_to_key_func(struct krb5_key_state *ks, const void *in);
65 typedef void encrypt_func(const struct krb5_key_state *ks,
67 typedef void checksum_func(const struct krb5_key_state *ks, int usage,
100 krb5_set_key(struct krb5_key_state *ks, const void *keydata) in krb5_set_key() argument
103 ks->ks_class->ec_set_key(ks, keydata); in krb5_set_key()
107 krb5_random_to_key(struct krb5_key_state *ks, const void *keydata) in krb5_random_to_key() argument
110 ks->ks_class->ec_random_to_key(ks, keydata); in krb5_random_to_key()
114 krb5_encrypt(const struct krb5_key_state *ks, struct mbuf *inout, in krb5_encrypt() argument
118 ks->ks_class->ec_encrypt(ks, inout, skip, len, ivec, ivlen); in krb5_encrypt()
122 krb5_decrypt(const struct krb5_key_state *ks, struct mbuf *inout, in krb5_decrypt() argument
126 ks->ks_class->ec_decrypt(ks, inout, skip, len, ivec, ivlen); in krb5_decrypt()
130 krb5_checksum(const struct krb5_key_state *ks, int usage, in krb5_checksum() argument
134 ks->ks_class->ec_checksum(ks, usage, inout, skip, inlen, outlen); in krb5_checksum()
141 extern void krb5_free_key(struct krb5_key_state *ks);