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
""" | |
OPAQUE Protocol Implementation Sketch (Educational Use Only) | |
Based on draft-irtf-cfrg-opaque (The OPAQUE Augmented PAKE Protocol) | |
This is a simplified implementation for educational purposes, | |
not suitable for production use. | |
""" | |
import os | |
import hmac |