There is a way to define non readable data in yang?
module system{
leaf name{
type string;
}
leaf password{
type string;
}
}
So in this case 'password' is the non readable data.
There is a way to define non readable data in yang?
module system{
leaf name{
type string;
}
leaf password{
type string;
}
}
So in this case 'password' is the non readable data.
Copyright © 2021 Jogjafile Inc.
If you wish to make the data "unreadable", you can use
binary
built-in type, which enables you to set an arbitrary blob of bytes (base64 encoded) as the value for a leaf. Encrypted bytes included.