Skip to content

Commit

Permalink
Remove 15 chars. limit at encrypt password (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodriguez-rc committed Jun 3, 2021
1 parent 7b48cd0 commit 3230626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zcl_excel_common.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ method ENCRYPT_PASSWORD.

DATA lv_pwd TYPE zexcel_aes_password.

lv_pwd = i_pwd(15).
lv_pwd = i_pwd.

lv_pwd_len = STRLEN( lv_pwd ).
lv_curr_offset = lv_pwd_len - 1.
Expand Down

0 comments on commit 3230626

Please sign in to comment.