Searched defs:ciphername (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dluks.c76 char ciphername[sizeof (header.cipherName) + 1]; local
122 grub_memcpy (ciphername, header.cipherName, sizeof (header.cipherName));
123 ciphername[sizeof (header.cipherName)] = 0;
129 ciph = grub_crypto_lookup_cipher_by_name (ciphername);
133 ciphername);
H A Dgeli.c256 const char *ciphername = NULL; local
322 ciphername = algorithms[grub_le_to_cpu16 (header.alg)];
323 ciph = grub_crypto_lookup_cipher_by_name (ciphername);
327 ciphername);
/osnet-11/usr/src/grub/grub2/util/
H A Dimport_gcry.py221 ciphername = line [len ("gcry_cipher_spec_t"):].strip () variable
222 ciphername = re.match("[a-zA-Z0-9_]*",ciphername).group () variable
223 ciphernames.append (ciphername)
299 for ciphername in ciphernames:
300 chmsg = "Register cipher %s" % ciphername
302 fw.write (" grub_cipher_register (&%s);\n" % ciphername)
312 for ciphername in ciphernames:
313 chmsg = "Unregister cipher %s" % ciphername
315 fw.write (" grub_cipher_unregister (&%s);\n" % ciphername)
[all...]

Completed in 77 milliseconds