-
Notifications
You must be signed in to change notification settings - Fork 0
wip #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
wip #3
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
0a70650
fix whitespace
larshp e9e8fa1
update npm packages
larshp 024f66f
update readme
larshp ed0a0a1
add comments
larshp db2b828
fix whitespace
larshp 23ab450
fixes
larshp 4e154d7
ECDH scaffolding
larshp 2cf4608
update
larshp 38c98e4
upd
larshp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# abapGit-ssh | ||
testing test | ||
# open-abap-ssh | ||
SSH client implemented in ABAP, over TCP/IP with 1 byte frame sizes = slow. | ||
|
||
https://datatracker.ietf.org/doc/html/rfc4251 - The Secure Shell (SSH) Protocol Architecture | ||
https://datatracker.ietf.org/doc/html/rfc4252 - The Secure Shell (SSH) Authentication Protocol | ||
https://datatracker.ietf.org/doc/html/rfc4253 - The Secure Shell (SSH) Transport Layer Protocol | ||
https://datatracker.ietf.org/doc/html/rfc4254 - The Secure Shell (SSH) Connection Protocol |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
CLASS zcl_oassh_message_ecdh_30 DEFINITION | ||
PUBLIC | ||
FINAL | ||
CREATE PUBLIC . | ||
|
||
PUBLIC SECTION. | ||
|
||
TYPES: | ||
BEGIN OF ty_data, | ||
message_id TYPE x LENGTH 1, | ||
q_c TYPE xstring, | ||
END OF ty_data . | ||
|
||
CONSTANTS gc_message_id TYPE x LENGTH 1 VALUE '1E'. " is 30 in decimal | ||
|
||
CLASS-METHODS parse | ||
IMPORTING | ||
!io_stream TYPE REF TO zcl_oassh_stream | ||
RETURNING | ||
VALUE(rs_data) TYPE ty_data . | ||
|
||
CLASS-METHODS serialize | ||
IMPORTING | ||
is_data TYPE ty_data | ||
RETURNING | ||
VALUE(ro_stream) TYPE REF TO zcl_oassh_stream . | ||
|
||
PROTECTED SECTION. | ||
PRIVATE SECTION. | ||
ENDCLASS. | ||
|
||
|
||
|
||
CLASS ZCL_OASSH_MESSAGE_ECDH_30 IMPLEMENTATION. | ||
|
||
|
||
METHOD parse. | ||
BREAK-POINT. | ||
ENDMETHOD. | ||
|
||
|
||
METHOD serialize. | ||
BREAK-POINT. | ||
ENDMETHOD. | ||
ENDCLASS. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0"> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<VSEOCLASS> | ||
<CLSNAME>ZCL_OASSH_MESSAGE_ECDH_30</CLSNAME> | ||
<LANGU>E</LANGU> | ||
<DESCRIPT>SSH_MSG_KEX_ECDH_INIT</DESCRIPT> | ||
<STATE>1</STATE> | ||
<CLSCCINCL>X</CLSCCINCL> | ||
<FIXPT>X</FIXPT> | ||
<UNICODE>X</UNICODE> | ||
</VSEOCLASS> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid use of BREAK/BREAK-POINT
Suggest following fix,