ProductsAbaqus/StandardAbaqus/Explicit Specifying additional access levels and controlsYou can customize your encryption so that only users with a license for a particular Abaqus feature or from a particular site can include or decrypt the file. For example, you can specify that only Abaqus/Standard users can access the file. You can also prevent decryption of an encrypted file by any user, regardless of their license and site; end users can still use the encrypted data in an analysis by including it by reference in an unencrypted Abaqus input file, provided that the users know the encrypted file's password. Security and support considerationsThe primary intent of the Abaqus encryption implementation is to prevent unauthorized use of encrypted input data, not to prevent disclosure of encrypted data to authorized users. Running an Abaqus analysis input using encrypted data may produce output files that are not encrypted. Only material and connector behavior information contained within an encrypted input file is prevented from being visible in the output. This approach means that recipients of encrypted data who satisfy the access criteria, such as the password, license feature, or SiteID, will be able to reconstruct some input in an unencrypted form. Providers of encrypted data should consider establishing contractual agreements to protect proprietary data. Users of encrypted data must accept responsibility for security of files produced from encrypted input and should consider restricting access to resulting analysis files. Abaqus technical support cannot retrieve lost passwords for encrypted data files. Users receiving encrypted data should contact the data provider for any technical support issues. Adding comments to the header of an encrypted fileWhen you encrypt a file, Abaqus adds the following unencrypted comment line to the beginning of the file: ** encrypted input Do not modify or delete this header comment. You can, however, insert additional comment lines between this header comment and the first line of encrypted data. These post-encryption comment lines can describe the encrypted file's contents, provide release numbers, or display copyright and legal information about the encrypted data. For more information about comment line syntax, see Input Syntax Rules. You should not, however, add post-encryption comment lines within the lines of encrypted data. If you want to edit or amend the comment lines within the data itself, you must first decrypt the data. Command summaryabaqus {encrypt
| decrypt}inputinput-file-nameoutputoutput-file-namepasswordpasswordlicensefeature_listsiteidsite-id_listinclude_onlyexpirationexpiration_date
Command line options
ExamplesThe following examples illustrate the different encryption methods that are possible using the encrypt execution procedure. Creating encrypted filesIn the simplest encryption scenario an Abaqus user creates an encrypted copy of a file named material_data.inp, which contains all of the material data for a model, before sending the encrypted version to an authorized end user. Encryption prevents unauthorized users from accessing the encrypted file during its transmission. To create an encrypted copy of material_data.inp named material_data_enc.inp, issue the following command: abaqus encrypt input=material_data.inp output=material_data_enc.inp password=e1No9c2z Upon receiving the file, the end user can run the abaqus decrypt execution procedure to create a copy of the original, non-encrypted material data file. Because of the encryption options selected in this example, the end user requires only the encrypted file's password to decrypt it. To decrypt the encrypted data file material_data_enc.inp, producing the non-encrypted file material_data.inp, issue the following command: abaqus decrypt input=material_data_enc.inp output=material_data.inp password=e1No9c2z Alternatively, the end user can skip the decryption and run an analysis that includes the encrypted data by reference. To include the encrypted file by reference in an Abaqus input file, add the following statement to the input file: *INCLUDE, INPUT=material_data_enc.inp, PASSWORD=e1No9c2z Limiting access to decrypted files by license feature or site IDYou can specify that end users cannot access the file unless they have a valid license for a particular Abaqus feature, run Abaqus at a particular site, or satisfy both of these criteria. To encrypt a data file that can be accessed only by users who have an Abaqus/Explicit license and who run the software at site 09YYY, issue the following command: abaqus encrypt input=material_data.inp output=material_data_enc.inp password=e1No9c2z license=explicit siteid=09YYY An end user can attempt to access the file material_data_enc.inp using the same decryption or inclusion syntax specified in the previous example. For this encrypted file, Abaqus would validate that the end user has an Abaqus/Explicit license and is running Abaqus at site 09YYY before providing access to the file. If the end user's license or site settings do not match those specified during encryption, Abaqus issues an error message that lists the licenses or sites that are required to access the file. Creating encrypted files that must be included to be used by AbaqusYou can use the include_only option to prevent end users from decrypting the file directly using abaqus decrypt. Authorized users can access a file encrypted with the include_only option by including the file by reference in an Abaqus input file. Material and connector behavior definitions within an encrypted input file are not written to the output database. In addition, all material and connector behavior definitions output to the data file are suppressed if an encrypted file is used as input for any portion of the model. To create an encrypted file that is available only for inclusion by reference in other input files, issue the following command: abaqus encrypt input=material_data.inp output=material_data_enc.inp password=e1No9c2z include_only The resulting encrypted file can be included by reference in an Abaqus input file using the same syntax as in the previous example. If you attempt to decrypt a file that was encrypted with the include_only option, Abaqus returns an error message. |