Encryption of data is translating data to another shape or symbol which enables people only with an access to the secret key or a password that can read it. The data which are encrypted are generally referred to as cipher text, while data which are unencrypted are known plain text. Entropy can be used as a measure which gives the number of bits that are needed for coding the data of an image. As the values of pixel within an image are dispensed through further gray-levels, the entropy increases. The aim of this research is to compare between CAST-128 with proposed adaptive key and RSA encryption methods for video frames to determine the more accurate method with highest entropy. The first method is achieved by applying the "CAST-128" and the second is achieved by applying the "RSA ". CAST-128 utilizes a pair of sub-keys for each round as a quantum of five bits that was utilized as a key of rotation for each round and a quantum of 32 (bits) was utilized as a key of masking into a round . The proposed adaptive 128-bits key can be extracted from the main diagonal of each frame before encryption. RSA is a public-key cryptographic technique which can be known as (asymmetric) cryptography. An asymmetry of a key depends on factoring a product of two big prime values. A comparison was applied on several videos and the results showed that CAST-128 method proved the highest degree of entropy even if the frames have lots of distorted data or unclear image pixels. For example, the entropy value of a sample of a girl video is 2581.921 when using CAST-128, while it is 2271.329 when using the RSA; also the entropy value of a sample of a scooter video is 2569.814 when using the CAST-128, while it is 2282.844 when using RSA.
Background: Coping skills play a vital role in managing the physical and psychological effects of breast cancer (BC). Despite improvements in early detection and treatment, Breast cancer survivors continue to face long-term challenges after diagnosis. Therefore, this study aims to evaluate the coping skills employed by breast cancer women in Iraq and to identify the sociodemographic, clinical, and psychological factors associated with these coping skills. Methods: A cross-sectional study was conducted among 244 breast cancer women in The Medical City Teaching Oncology Hospital, Baghdad, Iraq, from August 2023 to October 2023, coping skills and psychological factors were assessed using the BRIEF COPE-28, and Hospital Anxiety Depression scale
... Show MoreTi6Al4V alloy is widely used in aerospace and medical applications. It is classified as a difficult to machine material due to its low thermal conductivity and high chemical reactivity. In this study, hybrid intelligent models have been developed to predict surface roughness when end milling Ti6Al4V alloy with a Physical Vapor Deposition PVD coated tool under dry cutting conditions. Back propagation neural network (BPNN) has been hybridized with two heuristic optimization techniques, namely: gravitational search algorithm (GSA) and genetic algorithm (GA). Taguchi method was used with an L27 orthogonal array to generate 27 experiment runs. Design expert software was used to do analysis of variances (ANOVA). The experimental data were
... Show MoreBackground: One of the most predominant periodontal diseases is the plaque induced gingivitis. For the past 20 years, super-oxidized solutions have be..
Almost all thermal systems utilize some type of heat exchanger. In a lot of cases, evaporators are important for systems like organic Rankine cycle systems. Evaporators give a share in a large portion of the capital cost, and their cost is significantly attached to their size or transfer area. Open-cell metal foams with high porosity are taken into consideration to enhance thermal performance without increase the size of heat exchangers. Numerous researchers have tried to find a representation of the temperature distribution closer to reality due to the different properties between the liquid and solid phases. Evaporation heat transfer in an annular pipe of double pipe heat exchanger (DPHEX) filled with cooper foam is investigated numerical
... Show MoreA total of 70 pregnant women with toxoplasmosis were studied to evaluate of some immunological aspects. The women were distributed into three groups: 37 women were IgG positive, 18 women were IgM positive and 15 women were IgG and IgM positive as well as 25 healthy women were considered as control group. Serum samples were collected and ELISA method was employed to assess levels of interleukins 4, 6, 10, Interferon gamma-induced protein 10 (IP-10), Granulocyte-macrophage colony-stimulating factor (GM-CSF) and Vascular endothelial growth factor (VEGF). As compared with control the levels of cytokines were significantly increased in serum of three pregnant women groups with toxoplasmosis and the highest increase was observed in the IgM positi
... Show MoreBackground. Material tribology has widely expanded in scope and depth and is extended from the mechanical field to the biomedical field. The present study aimed to characterize the nanocoating of highly pure (99.9%) niobium (Nb), tantalum (Ta), and vanadium (V) deposited on 316L stainless steel (SS) substrates which considered the most widely used alloys in the manufacturing of SS orthodontic components. To date, the coating of SS orthodontic archwires with Nb, Ta, and V using a plasma sputtering method has never been reported. Nanodeposition was performed using a DC plasma sputtering system with three different sputtering times (1, 2, and 3 hours). Results. Structural and elemental analyses were conducted on the deposited coating
... Show MoreA skip list data structure is really just a simulation of a binary search tree. Skip lists algorithm are simpler, faster and use less space. this data structure conceptually uses parallel sorted linked lists. Searching in a skip list is more difficult than searching in a regular sorted linked list. Because a skip list is a two dimensional data structure, it is implemented using a two dimensional network of nodes with four pointers. the implementation of the search, insert and delete operation taking a time of upto . The skip list could be modified to implement the order statistic operations of RANKand SEARCH BY RANK while maintaining the same expected time. Keywords:skip list , parallel linked list , randomized algorithm , rank.