Lines Matching defs:blob
489 let blob = Self::new_from_stream(&mut stream).context(ks_err!())?; in new_from_stream_decrypt_with() localVariable
698 let blob = Self::read_generic_blob(&self.make_chr_filename(uid, alias, prefix)) in read_characteristics_file() localVariable
701 let blob = match blob { in read_characteristics_file() localVariable
706 let blob = Self::decrypt_if_required(super_key, blob) in read_characteristics_file() localVariable
820 let blob = Self::read_generic_blob_decrypt_with(&path, decrypt) in read_legacy_keystore_entry() localVariable
1271 let blob = Self::decrypt_if_required(super_key, blob) in load_by_uid_alias() localVariable
1288 let blob = Self::decrypt_if_required(super_key, blob) in load_by_uid_alias() localVariable
1312 let blob = Self::read_generic_blob(&path).context(ks_err!("While loading super key."))?; in load_super_key() localVariable
1314 let blob = match blob { in load_super_key() localVariable
1321 let blob = aes_gcm_decrypt(&data, &iv, &tag, &key) in load_super_key() localVariable
1597 let blob = in make_encrypted_characteristics_file() localVariable
1599 let blob = prepare_blob(blob, key).unwrap(); in make_encrypted_characteristics_file() localVariable
1611 let blob = Blob { value: BlobValue::Generic(data.to_vec()), flags: flags::ENCRYPTED }; in make_encrypted_usr_cert_file() localVariable
1612 let blob = prepare_blob(blob, key).unwrap(); in make_encrypted_usr_cert_file() localVariable
1624 let blob = Blob { value: BlobValue::Generic(data.to_vec()), flags: flags::ENCRYPTED }; in make_encrypted_ca_cert_file() localVariable
1625 let blob = prepare_blob(blob, key).unwrap(); in make_encrypted_ca_cert_file() localVariable
1633 let blob = Blob { in make_encrypted_key_file() localVariable
1637 let blob = prepare_blob(blob, key).unwrap(); in make_encrypted_key_file() localVariable
1645 let blob = Blob { value: BlobValue::Generic(data.to_vec()), flags: 0 }; in make_cert_blob_file() localVariable
1646 let blob = prepare_blob(blob, &[]).unwrap(); in make_cert_blob_file() localVariable