OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
hm_option_is_encrypted.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine hm_option_is_encrypted (is_encrypted)

Function/Subroutine Documentation

◆ hm_option_is_encrypted()

subroutine hm_option_is_encrypted ( logical, intent(out) is_encrypted)

Definition at line 287 of file hm_option_is_encrypted.F.

288C-----------------------------------------------
289C ROUTINE DESCRIPTION :
290C ===================
291C GIVE THE INFORMATION THAT AT LEAST ONE LINE OF AN OPTION IS CRYPTED
292C-----------------------------------------------
293C DUMMY ARGUMENTS DESCRIPTION:
294C ===================
295C
296C NAME DESCRIPTION
297C
298C IS_ENCRYPTED IS AT LEAST ONE LINE OF THE OPTION CRYPTED TRUE OR FALSE
299C============================================================================
300C M o d u l e s
301C-----------------------------------------------
302 USE message_mod
303 USE submodel_mod
304C-----------------------------------------------
305C I m p l i c i t T y p e s
306C-----------------------------------------------
307#include "implicit_f.inc"
308C-----------------------------------------------
309C D u m m y A r g u m e n t s
310C-----------------------------------------------
311C OUTPUT ARGUMENTS
312 LOGICAL,INTENT(OUT)::IS_ENCRYPTED
313C-----------------------------------------------
314 is_encrypted = .false.
315 CALL cpp_option_is_crypted(is_encrypted)
316 RETURN
317C